/* =====================================================
   PALS - Plant & Labour Solutions Ltd
   Brand: Black / Gold / Red - bold industrial style
   ===================================================== */

:root {
    --black:       #0a0a0a;
    --black-soft:  #141414;
    --black-2:     #1c1c1c;
    --grey-900:    #2a2a2a;
    --grey-700:    #444;
    --grey-500:    #6b6b6b;
    --grey-300:    #c9c9c9;
    --grey-100:    #f3f3f3;
    --white:       #ffffff;

    --gold:        #d4af37;
    --gold-bright: #f5c518;
    --gold-deep:   #a8861f;

    --red:         #d32f2f;
    --red-deep:    #a31818;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
    --shadow-md: 0 10px 30px rgba(0,0,0,.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.25);

    --radius:    10px;
    --radius-lg: 18px;

    --container: 1200px;

    --font-display: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: #1a1a1a;
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--black); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-deep); }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: .5px; line-height: 1.15; margin: 0 0 .6em; text-transform: uppercase; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }
.muted { color: var(--grey-500); }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--gold); color: var(--black); padding: .75rem 1rem;
    z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
    font-weight: 600; font-size: .95rem;
    padding: .85rem 1.6rem; border-radius: var(--radius);
    border: 2px solid transparent; cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
    color: var(--black);
    box-shadow: 0 6px 18px rgba(212, 175, 55, .35);
}
.btn--primary:hover { color: var(--black); filter: brightness(1.08); box-shadow: 0 10px 28px rgba(212, 175, 55, .55); }
.btn--ghost {
    background: transparent; color: var(--white); border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.btn--dark {
    background: var(--black); color: var(--white);
}
.btn--dark:hover { color: var(--gold-bright); background: var(--black-soft); }
.btn--red {
    background: var(--red); color: var(--white);
}
.btn--red:hover { background: var(--red-deep); color: var(--white); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.topbar {
    background: var(--black);
    color: var(--grey-300);
    font-size: .85rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar__inner {
    display: flex; flex-wrap: wrap; gap: 1.2rem;
    padding: .55rem 0;
    align-items: center;
}
.topbar a { color: var(--grey-300); }
.topbar a:hover { color: var(--gold-bright); }
.topbar__item--badge {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
}
.topbar__flags {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.topbar__flag {
    width: 22px;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.navbar {
    background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.navbar__inner {
    display: flex; align-items: center; justify-content: flex-start;
    padding: .9rem 0;
    gap: .5rem;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo {
    height: 72px; width: auto; display: block;
    transition: transform .25s ease;
}
.brand:hover .brand__logo { transform: translateY(-1px); }
.brand--footer .brand__logo { height: 248px; max-width: 100%; width: auto; }
@media (max-width: 600px) {
    .brand__logo          { height: 54px; }
    .brand--footer .brand__logo { height: 207px; }
}

.primary-nav { flex: 1; }
.primary-nav ul {
    display: flex; align-items: center; justify-content: flex-start; gap: .25rem;
}
.nav-link {
    color: var(--white);
    font-family: var(--font-display); text-transform: uppercase;
    font-size: .95rem; letter-spacing: 1.5px;
    padding: .65rem 1rem; border-radius: 6px;
    position: relative;
}
.nav-link:hover { color: var(--gold-bright); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
    content: ""; position: absolute; left: 1rem; right: 1rem; bottom: .25rem;
    height: 2px; background: var(--gold);
}
.nav-cta { margin-left: .75rem; padding: .65rem 1.2rem; }

.nav-toggle {
    display: none;
    background: transparent; border: 0; padding: .5rem;
    cursor: pointer;
}
.nav-toggle span {
    display: block; width: 28px; height: 3px; background: var(--gold);
    margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--black); border-bottom: 3px solid var(--gold);
        max-height: 0; overflow: hidden; transition: max-height .35s ease;
    }
    .primary-nav.open { max-height: 600px; }
    .primary-nav ul { flex-direction: column; align-items: stretch; padding: 1rem; gap: .25rem; }
    .nav-link, .nav-cta { display: block; text-align: center; }
    .topbar__item--badge { display: none; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(10,10,10,.85) 0%, rgba(10,10,10,.65) 60%, rgba(211,47,47,.45) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1600 900" preserveAspectRatio="xMidYMid slice"><defs><linearGradient id="g" x1="0" y1="0" x2="1" y2="1"><stop offset="0" stop-color="%23202020"/><stop offset="1" stop-color="%23080808"/></linearGradient></defs><rect width="1600" height="900" fill="url(%23g)"/><g fill="none" stroke="%23d4af37" stroke-width="1.5" opacity="0.18"><path d="M0 700 L300 500 L500 600 L800 350 L1100 480 L1400 300 L1600 420"/><path d="M0 800 L250 650 L450 720 L700 500 L1000 620 L1300 460 L1600 580"/></g><g fill="%23111" opacity="0.6"><rect x="850" y="500" width="60" height="280"/><rect x="900" y="450" width="60" height="330"/><rect x="950" y="520" width="60" height="260"/><rect x="1010" y="430" width="80" height="350"/><rect x="1090" y="490" width="60" height="290"/></g></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0 28px, rgba(212,175,55,.04) 28px 30px);
    pointer-events: none;
}
.hero__inner {
    position: relative; z-index: 1;
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 7rem);
    display: grid;
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.6fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}
.hero__copy { max-width: none; }
.hero__media {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    min-width: 0;
}
.hero__media::before {
    /* Soft gold spotlight behind the logo for visual lift on dark BG. */
    content: ""; position: absolute; inset: -15%;
    background: radial-gradient(circle at 50% 50%,
        rgba(212, 175, 55, .38) 0%,
        rgba(212, 175, 55, .14) 35%,
        transparent 70%);
    filter: blur(14px);
    z-index: 0;
    pointer-events: none;
    transform-origin: center;
    animation: heroGlowBreathe 4.5s ease-in-out infinite alternate;
}
.hero__logo {
    position: relative; z-index: 1;
    width: min(622px, 100%);
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, .55))
            drop-shadow(0 4px 8px rgba(0, 0, 0, .4));
    animation: heroLogoIn .9s ease-out both,
               heroLogoFloat 6s ease-in-out .9s infinite alternate;
    will-change: transform;
}
@keyframes heroLogoIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes heroLogoFloat {
    0%   { transform: translateY(0)     scale(1); }
    100% { transform: translateY(-12px) scale(1.015); }
}
@keyframes heroGlowBreathe {
    0%   { opacity: .45; transform: scale(0.82); }
    100% { opacity: 1;   transform: scale(1.22); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__logo,
    .hero__media::before { animation: none; }
}
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; text-align: left; }
    .hero__media { order: -1; }
    .hero__logo  { width: min(438px, 100%); }
}
.hero__eyebrow {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-display); font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase;
    font-size: .85rem;
    padding: .35rem .8rem;
    border: 1px solid var(--gold);
    margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--gold); }
.hero h1 .accent-red { color: var(--red); }
.hero__lede {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--grey-300); max-width: 640px; margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,.08);
    border-top: 1px solid rgba(212,175,55,.3);
    border-bottom: 1px solid rgba(212,175,55,.3);
    position: relative; z-index: 1;
}
.hero__stat {
    background: rgba(10,10,10,.6); padding: 1.25rem 1.5rem;
    color: var(--white);
}
.hero__stat strong {
    display: block; font-family: var(--font-display);
    font-size: 2rem; color: var(--gold); line-height: 1;
}
.hero__stat span { font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-300); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, #2a1010 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    position: relative;
    border-bottom: 3px solid var(--gold);
    overflow: hidden;
}
.page-header::after {
    content: ""; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,175,55,.18), transparent 70%);
}
.page-header h1 { color: var(--white); margin-bottom: .25rem; }
.page-header h1 span { color: var(--gold); }
.page-header .breadcrumbs {
    color: var(--grey-300); font-size: .9rem; letter-spacing: 1px; text-transform: uppercase;
}
.page-header .breadcrumbs a { color: var(--gold); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--alt { background: var(--grey-100); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .muted { color: var(--grey-300); }

.section__head {
    max-width: 760px; margin: 0 auto 3rem; text-align: center;
}
.section__eyebrow {
    color: var(--gold-deep); font-family: var(--font-display); font-weight: 600;
    text-transform: uppercase; letter-spacing: 4px; font-size: .85rem;
    display: inline-block; margin-bottom: .75rem;
}
.section--dark .section__eyebrow { color: var(--gold); }
.section__head h2 .accent { color: var(--gold-deep); }
.section--dark .section__head h2 .accent { color: var(--gold); }

/* ---------- Feature grid (homepage values / about) ---------- */
.feature-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
    background: var(--white);
    border: 1px solid #eaeaea;
    border-top: 4px solid var(--gold);
    padding: 1.75rem;
    border-radius: var(--radius);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.feature__icon {
    width: 48px; height: 48px; margin-bottom: 1rem;
    display: grid; place-items: center;
    background: var(--black); color: var(--gold);
    border-radius: 8px; font-size: 1.4rem; font-weight: 700;
}
.feature h3 { margin-bottom: .5rem; }
.section--dark .feature {
    background: var(--black-soft); border-color: rgba(255,255,255,.08);
    color: var(--grey-300);
}
.section--dark .feature h3 { color: var(--white); }

/* ---------- Service cards ---------- */
.service-grid {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #eee;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    position: relative;
    display: grid; place-items: center;
    text-align: center;
    color: var(--gold);
    border-bottom: 3px solid var(--gold);
    padding: 1rem;
}
.service-card__media::before {
    content: ""; position: absolute; inset: 0;
    background:
        repeating-linear-gradient(135deg, transparent 0 18px, rgba(212,175,55,.06) 18px 19px),
        radial-gradient(circle at 70% 30%, rgba(211,47,47,.25), transparent 60%);
}
.service-card__media > * { position: relative; z-index: 1; }
.service-card__media span,
.service-card__media h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.15;
}
.service-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .9rem; }
.service-card__body p { color: var(--grey-700); margin: 0; }
.service-card__lede {
    font-weight: 500;
    color: #2a2a2a !important;
}
.service-card__body .more {
    color: var(--gold-deep); font-weight: 600; text-transform: uppercase;
    font-size: .85rem; letter-spacing: 1.5px;
    margin-top: auto;
}

/* Detail variant on /services - capped at 3 columns regardless of viewport,
   with a fixed header height so 1-line and 2-line titles align across rows. */
.service-grid--detail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-grid--detail .service-card__media {
    aspect-ratio: auto;
    min-height: 110px;
}
.service-grid--detail .service-card__media h3 { font-size: 1.25rem; letter-spacing: 2.5px; }
@media (max-width: 900px) {
    .service-grid--detail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .service-grid--detail { grid-template-columns: 1fr; }
}

/* ---------- Split / about ---------- */
.split {
    display: grid; gap: 3rem;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

.split__media {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--black) 0%, var(--grey-900) 100%);
    position: relative; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--gold);
}
.split__media-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.split__media::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.35) 100%),
        radial-gradient(circle at 80% 20%, rgba(212,175,55,.18), transparent 55%),
        radial-gradient(circle at 20% 80%, rgba(211,47,47,.18), transparent 55%);
}
.split__media span {
    position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
    font-family: var(--font-display); color: var(--gold); letter-spacing: 3px;
    text-transform: uppercase; font-size: .85rem;
}
.split__media--logo {
    background: var(--white);
}
.split__media--logo .split__media-img {
    object-fit: contain;
    padding: clamp(1.25rem, 4vw, 2.25rem);
    box-sizing: border-box;
}
.split__media--logo::after { display: none; }
.split h2 .accent { color: var(--gold-deep); }
.tick-list { margin-top: 1.25rem; }
.tick-list li {
    padding-left: 2rem; position: relative; margin-bottom: .65rem;
}
.tick-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--gold); color: var(--black); font-weight: 700;
    display: grid; place-items: center; font-size: .8rem;
}

/* ---------- CTA band ---------- */
.cta-band {
    background:
        linear-gradient(135deg, rgba(10,10,10,.92), rgba(10,10,10,.85)),
        repeating-linear-gradient(45deg, var(--gold) 0 20px, var(--black) 20px 40px);
    color: var(--white);
    padding: 3rem 0;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}
.cta-band__inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: .25rem; }
.cta-band h2::after {
    content: ""; display: block; width: 60px; height: 3px; background: var(--gold); margin-top: .5rem;
}
.cta-band p { color: var(--grey-300); margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- Footer ---------- */
.site-footer {
    background: #060606;
    color: var(--grey-300);
    padding-top: 4rem;
}
.site-footer__grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    padding-bottom: 3rem;
}
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer__col:first-child .brand--footer {
    display: block;
    width: fit-content;
    margin-inline: auto;
    margin-top: -1.25rem;
}
.site-footer__col:not(:first-child) {
    padding-top: 1rem;
}

.site-footer h4 {
    color: var(--white); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem;
    position: relative; padding-bottom: .6rem;
}
.site-footer h4::after {
    content: ""; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--gold);
}
.site-footer a { color: var(--grey-300); }
.site-footer a:hover { color: var(--gold-bright); }

.link-list li { padding: .25rem 0; }
.link-list--contact li { display: flex; gap: .6rem; align-items: center; }
.link-list--contact span { color: var(--gold); }

.site-footer__bottom {
    background: #000; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer__bottom-inner {
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    font-size: .85rem;
}
.site-footer__bottom p { margin: 0; }
.site-footer__bottom strong { color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery-filter {
    display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem;
}
.gallery-filter button {
    border: 2px solid var(--black); background: transparent; color: var(--black);
    padding: .5rem 1rem; cursor: pointer; font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: 1.5px; font-size: .85rem;
    border-radius: 6px; transition: all .2s ease;
}
.gallery-filter button:hover, .gallery-filter button.is-active {
    background: var(--black); color: var(--gold);
}
.gallery-grid {
    display: grid; gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.gallery-item {
    aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
    position: relative; cursor: pointer;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid #222;
}
.gallery-item::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(212,175,55,.35), transparent 60%),
        repeating-linear-gradient(45deg, transparent 0 16px, rgba(255,255,255,.04) 16px 17px);
    transition: transform .4s ease;
}
.gallery-item::after {
    content: attr(data-label);
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: .8rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    color: var(--white); font-family: var(--font-display);
    text-transform: uppercase; letter-spacing: 2px; font-size: .85rem;
}
.gallery-item:hover::before { transform: scale(1.08); }

/* ---------- Forms ---------- */
.contact-grid {
    display: grid; gap: 2.5rem;
    grid-template-columns: 1.3fr 1fr;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1rem; }
.form__row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label {
    display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem;
    text-transform: uppercase; letter-spacing: 1px;
}
.form input, .form textarea, .form select {
    width: 100%; padding: .85rem 1rem; border: 2px solid #ddd; border-radius: var(--radius);
    font: inherit; background: var(--white); transition: border-color .2s ease, box-shadow .2s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.2);
}
.form textarea { min-height: 150px; resize: vertical; }
.recaptcha-disclosure {
    max-width: 560px;
    margin: .8rem 0 0;
    color: var(--grey-500);
    font-size: .78rem;
    line-height: 1.5;
}
.recaptcha-disclosure a {
    color: var(--gold-deep);
    font-weight: 600;
}
.grecaptcha-badge { visibility: hidden !important; }

.contact-info {
    background: var(--black); color: var(--white);
    padding: 2rem; border-radius: var(--radius-lg);
    border-top: 4px solid var(--gold);
}
.contact-info h3 { color: var(--gold); }
.contact-info ul { display: grid; gap: 1rem; margin-top: 1rem; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info .ico {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--gold); color: var(--black);
    border-radius: 8px; display: grid; place-items: center; font-size: 1.1rem; font-weight: 700;
}
.contact-info a { color: var(--white); }
.contact-info a:hover { color: var(--gold-bright); }

.alert {
    padding: 1rem 1.2rem; border-radius: var(--radius);
    border-left: 4px solid var(--gold); background: #fff8e1;
    margin-bottom: 1.5rem;
}
.alert--success { border-color: #2e7d32; background: #e8f5e9; }
.alert--error   { border-color: var(--red); background: #ffebee; }

/* ---------- Process / about timeline ---------- */
.process {
    display: grid; gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    counter-reset: step;
}
.process__step {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.5rem; position: relative;
    border: 1px solid #eee;
    box-shadow: var(--shadow-sm);
}
.process__step::before {
    counter-increment: step;
    content: "0" counter(step);
    position: absolute; top: -18px; left: 1.25rem;
    background: var(--black); color: var(--gold);
    font-family: var(--font-display); font-size: 1.4rem;
    padding: .2rem .8rem; border-radius: 6px;
    border: 2px solid var(--gold);
}
.section--dark .process__step { background: var(--black-soft); border-color: rgba(255,255,255,.08); color: var(--grey-300); }
.section--dark .process__step h3 { color: var(--white); }
