:root {
  --ink: #111719;
  --ink-2: #192124;
  --ink-3: #2a3438;
  --orange: #f28a20;
  --orange-2: #ff9d3f;
  --blue: #1f9fca;
  --lime: #f2f0e9;
  --paper: #fbfaf7;
  --stone: #e5e1d8;
  --stone-2: #d6d0c5;
  --muted: #6c7579;
  --white: #fff;
  --line-dark: rgba(255,255,255,.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 30px 80px rgba(12, 18, 21, .14);
  --container: 1240px;
  --section-space: clamp(78px, 9vw, 132px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--orange); color: var(--ink); }

.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 1000; transform: translateY(-170%);
  padding: 10px 14px; border-radius: 9px; background: var(--white); color: var(--ink); font-weight: 800;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: var(--section-space) 0; }

h1, h2, h3 { margin: 0; line-height: .98; letter-spacing: -.045em; }
h1 { font-size: clamp(58px, 8.3vw, 126px); font-weight: 800; }
h2 { font-size: clamp(42px, 5.4vw, 76px); font-weight: 780; }
h3 { font-size: clamp(22px, 2.2vw, 30px); font-weight: 760; }
p { margin: 0; }
.lead { font-size: clamp(21px, 2.25vw, 29px); line-height: 1.4; letter-spacing: -.02em; }

.eyebrow {
  display: inline-block; margin: 0 0 18px; color: #b95a00;
  font-size: 12px; font-weight: 900; line-height: 1.2; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow-light { color: #ffb968; }

.btn {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: 14px; font-weight: 850; letter-spacing: -.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, .desktop-nav a:focus-visible, .mobile-nav a:focus-visible, .fleet-tab:focus-visible {
  outline: 3px solid rgba(31,159,202,.5); outline-offset: 3px;
}
.btn-primary { background: var(--orange); color: var(--ink); }
.btn-primary:hover { background: var(--orange-2); }
.btn-ghost { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.1); }
.btn-whatsapp { background: #1d9f58; color: var(--white); }
.btn-small { min-height: 44px; padding-inline: 19px; font-size: 13px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: linear-gradient(180deg, rgba(10,14,16,.82), rgba(10,14,16,0));
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(15,20,22,.93); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-inner { height: 84px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 118px; height: 64px; object-fit: contain; object-position: left center; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.desktop-nav a { position: relative; color: rgba(255,255,255,.7); font-size: 13px; font-weight: 750; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-cta { margin-left: 4px; }
.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 0; border-radius: 12px; background: rgba(255,255,255,.09); }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--white); }
.mobile-nav { display: none; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--ink); color: var(--white); }
.hero-media { position: absolute; inset: 0; background: url("assets/hero-mine.jpg") center 44% / cover no-repeat; transform: scale(1.02); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,14,.94) 0%, rgba(8,12,14,.77) 42%, rgba(8,12,14,.24) 72%, rgba(8,12,14,.42) 100%),
    linear-gradient(0deg, rgba(8,12,14,.86) 0%, transparent 48%, rgba(8,12,14,.2) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; opacity: .28; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 120px 120px; mask-image: linear-gradient(90deg, black, transparent 72%);
}
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 72px; align-items: end; padding-top: 150px; padding-bottom: 96px; }
.hero-content { max-width: 900px; }
.hero h1 span { color: var(--orange); }
.hero-copy { max-width: 780px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.65vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-self: end; }
.proof-card { min-height: 160px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; background: rgba(12,17,19,.58); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(14px); }
.proof-card-featured { background: rgba(242,138,32,.93); color: var(--ink); }
.proof-card-wide { grid-column: 1 / -1; min-height: 140px; }
.proof-kicker { margin-bottom: auto; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.proof-card-featured .proof-kicker { color: rgba(17,23,25,.55); }
.proof-card strong { display: block; margin-top: 25px; font-size: 32px; line-height: 1; letter-spacing: -.04em; }
.proof-card p { margin-top: 8px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.45; }
.proof-card-featured p { color: rgba(17,23,25,.7); }
.scroll-cue { position: absolute; z-index: 3; left: 24px; bottom: 34px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue span { width: 44px; height: 1px; background: rgba(255,255,255,.4); }

.trust-band { border-bottom: 1px solid var(--stone); background: var(--white); }
.trust-band-inner { min-height: 160px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.trust-band-copy .eyebrow { margin-bottom: 8px; }
.trust-band-copy p { color: var(--muted); font-size: 15px; }
.trust-logos { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 26px; }
.trust-logos img { width: 130px; height: 82px; margin-inline: auto; object-fit: contain; filter: saturate(.9); }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px, 9vw, 130px); align-items: start; }
.intro-title { position: sticky; top: 125px; }
.intro-title h2 { max-width: 620px; }
.intro-copy > p + p { margin-top: 26px; color: var(--muted); font-size: 17px; max-width: 760px; }
.business-stack { margin-top: 56px; border-top: 1px solid var(--stone); }
.business-stack div { min-height: 92px; display: grid; grid-template-columns: 50px 1fr auto; gap: 22px; align-items: center; border-bottom: 1px solid var(--stone); }
.business-stack span { color: #a35b1b; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.business-stack strong { font-size: 19px; letter-spacing: -.02em; }
.business-stack small { color: var(--muted); font-size: 12px; text-align: right; }

.operations { background: var(--ink); color: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 90px; align-items: end; margin-bottom: 52px; }
.section-heading > p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.section-heading-light > p { color: rgba(255,255,255,.58); }
.operations-stage { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 320px); gap: 14px; }
.operation-feature { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink-2); }
.operation-feature-large { grid-row: 1 / 3; }
.operation-feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.operation-feature:hover img { transform: scale(1.035); }
.operation-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,11,13,.9), rgba(7,11,13,.06) 68%); }
.operation-content { position: absolute; inset: auto 0 0; padding: 30px; }
.operation-content > span { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.operation-content > p { margin-top: 7px; color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.operation-content h3 { margin-top: 8px; }
.operation-content small { display: block; max-width: 530px; margin-top: 12px; color: rgba(255,255,255,.63); font-size: 13px; }
.process-rail { list-style: none; margin: 60px 0 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--line-dark); }
.process-rail li { position: relative; min-height: 150px; padding: 26px 18px 20px 0; border-right: 1px solid var(--line-dark); }
.process-rail li::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(242,138,32,.13); }
.process-rail li:last-child { border-right: 0; }
.process-rail b { display: block; color: rgba(255,255,255,.34); font-size: 10px; letter-spacing: .12em; }
.process-rail span { display: block; margin-top: 27px; font-size: 14px; font-weight: 800; }
.process-rail small { display: block; margin-top: 7px; color: rgba(255,255,255,.45); font-size: 11px; }

.fleet { background: var(--white); }
.fleet-showcase { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 610px; border: 1px solid var(--stone); border-radius: var(--radius-xl); overflow: hidden; background: var(--paper); box-shadow: 0 28px 70px rgba(16,22,24,.08); }
.fleet-visual { position: relative; min-height: 610px; overflow: hidden; }
.fleet-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,15,17,.74), transparent 55%); }
.fleet-visual img { width: 100%; height: 100%; object-fit: cover; transition: opacity .22s ease, transform .45s ease; }
.fleet-visual.is-switching img { opacity: .28; transform: scale(1.03); }
.fleet-visual-badge { position: absolute; z-index: 2; left: 30px; bottom: 28px; display: flex; align-items: baseline; gap: 12px; color: var(--white); }
.fleet-visual-badge span { color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .13em; }
.fleet-visual-badge strong { font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -.04em; }
.fleet-selector { display: flex; flex-direction: column; }
.fleet-tab { flex: 1; position: relative; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 16px; align-content: center; padding: 20px 28px; border: 0; border-bottom: 1px solid var(--stone); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease; }
.fleet-tab:last-child { border-bottom: 0; }
.fleet-tab > span { grid-row: 1 / 3; align-self: center; color: #a35b1b; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.fleet-tab strong { font-size: 20px; letter-spacing: -.02em; }
.fleet-tab small { margin-top: 5px; color: var(--muted); font-size: 12px; }
.fleet-tab::after { content: "↗"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); opacity: 0; transition: opacity .2s ease; }
.fleet-tab:hover { background: #f3efe7; }
.fleet-tab.active { background: var(--ink); color: var(--white); }
.fleet-tab.active small { color: rgba(255,255,255,.55); }
.fleet-tab.active::after { opacity: 1; color: var(--orange); }

.experience { background: var(--ink-2); color: var(--white); }
.experience-top { display: grid; grid-template-columns: 1.1fr .7fr; gap: 90px; align-items: end; margin-bottom: 52px; }
.experience-top > p { color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.65; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.experience-card { min-height: 380px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: flex; flex-direction: column; }
.experience-index { color: rgba(255,255,255,.4); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.experience-logo { width: 150px; height: 120px; margin: auto 0 44px; padding: 12px; display: grid; place-items: center; border-radius: 14px; background: var(--white); }
.experience-logo img { width: 120px; height: 95px; object-fit: contain; }
.experience-card h3 { font-size: 26px; }
.experience-card p { margin-top: 10px; color: rgba(255,255,255,.52); font-size: 13px; }

.principles { background: var(--lime); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { min-height: 390px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--stone-2); border-radius: var(--radius-lg); background: var(--paper); }
.value-card-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.value-mark { color: #9e6f46; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.value-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: auto 0 30px; border-radius: 50%; background: var(--ink); }
.value-card-dark .value-icon { background: var(--orange); }
.value-icon svg { width: 30px; height: 30px; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card-dark .value-icon svg { stroke: var(--ink); }
.value-card p { margin-top: 15px; color: var(--muted); font-size: 14px; }
.value-card-dark p { color: rgba(255,255,255,.58); }
.principle-marquee { margin-top: 18px; padding: 22px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; border-top: 1px solid var(--stone-2); border-bottom: 1px solid var(--stone-2); color: var(--ink-3); }
.principle-marquee span { font-size: 13px; font-weight: 800; }
.principle-marquee i { color: var(--orange); font-style: normal; }

.statement-band { background: var(--orange); }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; }
.statement { min-height: 500px; padding: clamp(46px, 6vw, 74px) clamp(36px, 5vw, 70px); display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid rgba(17,23,25,.18); }
.statement:last-child { border-right: 0; background: #8dd9ee; }
.statement > span { margin-bottom: auto; font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.statement h2 { font-size: clamp(36px, 4vw, 56px); max-width: 650px; }
.statement p { margin-top: 22px; max-width: 640px; color: rgba(17,23,25,.72); font-size: 15px; }

.contact { background: var(--white); }
.contact-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.2fr .65fr; gap: 70px; padding: clamp(42px, 6vw, 76px); border-radius: var(--radius-xl); background: var(--ink); color: var(--white); }
.contact-panel::after { content: ""; position: absolute; width: 430px; height: 430px; right: -150px; top: -190px; border-radius: 50%; border: 92px solid rgba(242,138,32,.12); pointer-events: none; }
.contact-copy, .contact-details { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 800px; }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin-top: 24px; color: rgba(255,255,255,.58); font-size: 17px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.contact-details { display: grid; gap: 0; align-content: center; font-style: normal; }
.contact-details div { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-details div:last-child { border-bottom: 0; }
.contact-details span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.contact-details p, .contact-details a { color: rgba(255,255,255,.72); font-size: 14px; }
.contact-details a:hover { color: var(--white); }

.site-footer { padding: 46px 0 84px; background: #0b0f10; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 44px; align-items: end; }
.footer-brand img { width: 118px; height: 68px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 330px; margin-top: 12px; color: rgba(255,255,255,.42); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a, .footer-meta { color: rgba(255,255,255,.45); font-size: 11px; }
.footer-links a:hover { color: var(--white); }
.mobile-action-bar { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr 300px; gap: 42px; }
  .proof-card { padding: 18px; }
  .process-rail { grid-template-columns: repeat(3, 1fr); }
  .process-rail li:nth-child(3) { border-right: 0; }
  .process-rail li:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
  .fleet-showcase { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { display: grid; max-height: 0; overflow: hidden; background: rgba(15,20,22,.98); transition: max-height .25s ease; }
  .mobile-nav.open { max-height: 460px; border-top: 1px solid var(--line-dark); }
  .mobile-nav a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.82); font-size: 14px; font-weight: 800; }
  .hero { min-height: 980px; align-items: flex-end; }
  .hero-layout { grid-template-columns: 1fr; gap: 46px; padding-top: 160px; padding-bottom: 72px; }
  .hero-content { max-width: 760px; }
  .hero-proof { width: min(100%, 660px); }
  .scroll-cue { display: none; }
  .trust-band-inner, .intro-grid, .section-heading, .experience-top, .contact-panel { grid-template-columns: 1fr; gap: 32px; }
  .trust-band-inner { padding: 34px 0; }
  .intro-title { position: static; }
  .operations-stage { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 300px; }
  .operation-feature-large { grid-column: 1 / -1; grid-row: auto; }
  .fleet-showcase { grid-template-columns: 1fr; }
  .fleet-visual { min-height: 470px; }
  .experience-grid, .value-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 280px; }
  .experience-logo { margin-top: 50px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement { min-height: 430px; border-right: 0; border-bottom: 1px solid rgba(17,23,25,.18); }
  .statement:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 680px) {
  :root { --section-space: 78px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { height: 72px; }
  .brand img { width: 104px; height: 56px; }
  h1 { font-size: clamp(54px, 17vw, 84px); }
  h2 { font-size: clamp(38px, 12vw, 54px); }
  .hero { min-height: 960px; }
  .hero-media { background-position: 62% 50%; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,12,14,.94), rgba(8,12,14,.58)), linear-gradient(0deg, rgba(8,12,14,.92), transparent 54%); }
  .hero-grid-lines { background-size: 84px 84px; }
  .hero-layout { padding-top: 132px; padding-bottom: 54px; }
  .hero-copy { font-size: 16px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 8px; }
  .proof-card { min-height: 145px; padding: 16px; }
  .proof-card strong { font-size: 28px; }
  .trust-band-inner { gap: 24px; }
  .trust-logos { gap: 10px; }
  .trust-logos img { width: 88px; height: 60px; }
  .business-stack div { grid-template-columns: 34px 1fr; padding: 16px 0; }
  .business-stack small { grid-column: 2; text-align: left; }
  .operations-stage { grid-template-columns: 1fr; grid-template-rows: repeat(3, 350px); }
  .operation-feature-large { grid-column: auto; }
  .operation-content { padding: 24px; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .process-rail li:nth-child(3) { border-right: 1px solid var(--line-dark); }
  .process-rail li:nth-child(2n) { border-right: 0; }
  .process-rail li:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .fleet-showcase { min-height: 0; border-radius: 20px; }
  .fleet-visual { min-height: 340px; }
  .fleet-visual-badge { left: 20px; bottom: 20px; }
  .fleet-selector { display: block; }
  .fleet-tab { width: 100%; min-height: 100px; }
  .experience-card { min-height: 260px; padding: 24px; }
  .experience-logo { margin: 38px 0 30px; }
  .value-card { min-height: 330px; }
  .statement { min-height: 420px; padding: 42px 26px; }
  .contact { padding-bottom: 106px; }
  .contact-panel { padding: 34px 24px; border-radius: 22px; }
  .contact-actions { display: grid; }
  .site-footer { padding-bottom: 118px; }
  .footer-links { flex-direction: column; gap: 8px; }
  .mobile-action-bar {
    position: fixed; z-index: 120; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: repeat(3, 1fr);
    padding: 6px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(17,23,25,.94); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.35);
  }
  .mobile-action-bar a { min-height: 50px; display: grid; place-items: center; border-right: 1px solid rgba(255,255,255,.1); color: var(--white); font-size: 12px; font-weight: 850; }
  .mobile-action-bar a:last-child { border-right: 0; background: var(--orange); color: var(--ink); border-radius: 11px; }
}
