:root {
  --black: #020503;
  --bg: #050807;
  --panel: rgba(255,255,255,.025);
  --green: #66c650;
  --green2: #7fd76a;
  --text: #f3f4f0;
  --muted: #b7bdb4;
  --soft: #888f87;
  --line: rgba(102,198,80,.2);
  --line2: rgba(255,255,255,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 108px; }
@media (max-width: 760px) {
  [id] { scroll-margin-top: 88px; }
}
body {
  margin: 0;
  background: radial-gradient(circle at 45% 8%, rgba(52,91,64,.10), transparent 26rem), linear-gradient(180deg, #020403, #050807 58%, #020403);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .08;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
.site-shell { width: min(1600px, calc(100% - 64px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -70px;
  left: 16px;
  background: var(--green2);
  color: #061006;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2,5,3,.96);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.header-inner { min-height: 91px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: block; text-decoration: none; }
.brand img { display: block; width: 220px; height: auto; }
.nav { display: flex; gap: 34px; align-items: center; font-weight: 700; font-size: 1.02rem; color: rgba(243,244,240,.96); }
.nav a { text-decoration: none; white-space: nowrap; }
.nav a:hover, .nav a:focus { color: var(--green2); }
.nav-toggle { display: none; width: 44px; height: 40px; border: 1px solid var(--line); border-radius: 9px; background: transparent; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--green); }

.hero {
  border-top: 1px solid rgba(102,198,80,.56);
  border-bottom: 1px solid var(--line2);
  background: linear-gradient(180deg, rgba(3,6,5,.88), rgba(4,7,6,.94));
}
.hero-grid { min-height: 530px; display: grid; grid-template-columns: minmax(0,.96fr) minmax(520px,1.04fr); gap: 34px; align-items: center; padding: 56px 0 34px; }
.eyebrow { margin: 0 0 18px; color: var(--green); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
.eyebrow:after { content: ""; display: inline-block; width: 58px; height: 2px; margin-left: 16px; vertical-align: middle; background: linear-gradient(90deg, var(--green), transparent); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 0 0 18px; font-size: clamp(3rem,4.7vw,5.15rem); line-height: .98; letter-spacing: -.052em; font-weight: 900; text-shadow: 0 2px 14px rgba(0,0,0,.25); }
h1 span, .lead strong, .hero-note strong { color: var(--green); }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); line-height: 1.05; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
.lead, .hero-note { max-width: 760px; font-size: 1.08rem; line-height: 1.58; }
.lead { margin-bottom: 10px; color: rgba(243,244,240,.84); }
.hero-note { margin-bottom: 0; color: rgba(243,244,240,.72); }
.hero-actions, .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .83rem;
}
.button-primary { background: linear-gradient(180deg,#78d45e,#5fc643); color: #061006; }
.button-secondary { border: 1px solid rgba(102,198,80,.45); color: rgba(243,244,240,.92); background: rgba(255,255,255,.025); }
.button-primary:hover, .button-primary:focus, .button-secondary:hover, .button-secondary:focus { filter: brightness(1.06); }
.truck-wrap { align-self: end; margin-right: -6px; display: flex; justify-content: flex-end; }
.truck-wrap img { display: block; width: min(900px,100%); height: auto; filter: drop-shadow(0 18px 28px rgba(0,0,0,.52)); mix-blend-mode: screen; }

.proof-strip { border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(2,4,3,.72); }
.proof-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-left: 1px solid rgba(255,255,255,.08); }
.proof-grid div { padding: 22px 24px; border-right: 1px solid rgba(255,255,255,.08); }
.proof-grid strong { display: block; color: var(--green2); font-size: 1.08rem; margin-bottom: 4px; }
.proof-grid span { display: block; color: rgba(243,244,240,.66); font-size: .9rem; }

.content-section { padding: 72px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.two-column { display: grid; grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 54px; align-items: start; }
.rich-copy p, .muted-copy, .feature-card p, .detail-card p, .cta-card p { color: rgba(243,244,240,.70); font-size: 1.02rem; line-height: 1.7; }
.rich-copy p:last-child, .feature-card p:last-child, .detail-card p:last-child { margin-bottom: 0; }

.info-panel { background: linear-gradient(180deg,rgba(5,8,7,.96),rgba(3,5,4,.98)); }
.panel-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(480px,.95fr); border: 1px solid rgba(255,255,255,.08); border-top: 0; }
.services-panel { padding: 34px 28px 30px 26px; border-right: 1px solid rgba(255,255,255,.08); }
.panel-eyebrow { margin-bottom: 22px; }
.services-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.service { text-align: left; }
.circle-icon { width: 67px; height: 67px; border: 1.5px solid rgba(102,198,80,.82); border-radius: 50%; display: grid; place-items: center; color: var(--green); margin: 0 0 13px; font-size: 2.1rem; font-weight: 700; }
.circle-icon svg { width: 38px; height: 38px; stroke: var(--green); fill: none; stroke-width: 2.3; }
.circle-icon.seafood { font-size: 2.65rem; line-height: 1; }
.service h2 { font-size: 1.02rem; line-height: 1.2; margin: 0 0 7px; font-weight: 800; letter-spacing: 0; }
.service p { margin: 0; color: rgba(243,244,240,.62); font-size: .91rem; line-height: 1.45; }
.address-card { margin-top: 26px; display: flex; align-items: center; gap: 16px; min-height: 66px; border: 1px solid rgba(255,255,255,.10); border-radius: 7px; padding: 14px 20px; background: rgba(255,255,255,.015); }
.pin { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(180deg,var(--green2),var(--green)); flex: 0 0 auto; }
.pin svg { width: 27px; height: 27px; fill: #051006; }
.address-card strong { display: block; margin-bottom: 2px; font-size: 1.02rem; }
.address-card p { margin: 0; color: rgba(243,244,240,.66); font-size: .92rem; }
.contact-panel { padding: 34px 28px 30px 44px; }
.phone { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 14px; }
.phone span { width: 38px; height: 38px; border: 1px solid rgba(102,198,80,.55); border-radius: 50%; display: grid; place-items: center; color: var(--green); font-size: 1.15rem; }
.phone strong { font-size: 1.55rem; letter-spacing: -.025em; }
.contact-copy { color: rgba(243,244,240,.70); max-width: 670px; margin-bottom: 16px; }
.contact-form { margin-top: 4px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea { width: 100%; border: 1px solid rgba(255,255,255,.10); border-radius: 6px; background: rgba(5,8,7,.86); color: var(--text); padding: 13px 15px; outline: none; }
input::placeholder, textarea::placeholder { color: rgba(243,244,240,.50); }
input:focus, textarea:focus { border-color: rgba(102,198,80,.70); box-shadow: 0 0 0 2px rgba(102,198,80,.11); }
textarea { grid-column: 1/-1; min-height: 104px; resize: vertical; }
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form button { width: 100%; min-height: 52px; margin-top: 12px; border: 0; border-radius: 5px; background: linear-gradient(180deg,#78d45e,#5fc643); color: #061006; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; }
.contact-form button:hover, .contact-form button:focus { filter: brightness(1.05); }
.form-status { min-height: 1.4em; margin: 10px 0 0; color: var(--muted); font-size: .94rem; }
.form-status.is-error { color: #ffb7b7; }
.form-status.is-success { color: #a8f19b; }

.feature-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr); gap: 24px; }
.feature-card, .detail-card, .cta-card { border: 1px solid rgba(255,255,255,.09); background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.018)); border-radius: 12px; padding: 30px; }
.feature-main { border-color: rgba(102,198,80,.28); }
.check-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 11px; color: rgba(243,244,240,.76); }
.check-list li { position: relative; padding-left: 25px; }
.check-list li:before { content: ""; position: absolute; left: 0; top: .48em; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(102,198,80,.12); }
.text-link { color: var(--green2); font-weight: 800; text-decoration: none; }
.text-link:hover, .text-link:focus { text-decoration: underline; }
.testimonial-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 46px; align-items: start; }
.trust-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.trust-cards article { border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.025); border-radius: 10px; padding: 20px; }
.trust-cards strong { display: block; color: var(--green2); margin-bottom: 8px; }
.trust-cards span { display: block; color: rgba(243,244,240,.68); line-height: 1.55; }

.page-hero { padding: 82px 0 68px; border-top: 1px solid rgba(102,198,80,.56); border-bottom: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(3,6,5,.9), rgba(4,7,6,.96)); }
.narrow-copy { max-width: 1040px; }
.service-detail-section { padding-top: 54px; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.detail-card.emphasized { border-color: rgba(102,198,80,.36); background: linear-gradient(180deg, rgba(102,198,80,.07), rgba(255,255,255,.018)); }
.cta-section { padding-top: 0; }
.cta-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; }
.cta-card h2 { margin-bottom: 8px; }
.cta-card p { margin-bottom: 0; }
.cta-actions { justify-content: flex-end; margin-top: 0; }

.site-footer { border-top: 1px solid rgba(255,255,255,.06); background: #020403; }
.footer-grid { min-height: 66px; display: flex; align-items: center; justify-content: space-between; color: rgba(243,244,240,.66); font-size: .92rem; }
.footer-grid p { margin: 0; }
.footer-nav { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.footer-grid a { text-decoration: none; color: rgba(243,244,240,.74); }
.footer-grid a:hover, .footer-grid a:focus { color: var(--green2); }
.footer-nav span { color: rgba(243,244,240,.35); }

@media (max-width: 1180px) {
  .nav { gap: 24px; font-size: .98rem; }
  .services-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 1100px) {
  .hero-grid, .panel-grid, .two-column, .feature-grid, .testimonial-grid, .cta-card { grid-template-columns: 1fr; }
  .truck-wrap { margin: 8px auto 0; }
  .services-panel { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .contact-panel { padding-left: 28px; }
  .brand img { width: 200px; }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 820px) {
  .site-shell { width: min(1600px, calc(100% - 28px)); }
  .header-inner { min-height: 76px; }
  .brand img { width: 180px; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 18px; background: rgba(2,5,3,.98); border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-grid { padding-top: 32px; min-height: 0; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-detail-grid, .form-grid { grid-template-columns: 1fr; }
  textarea { grid-column: auto; }
  h1 { font-size: clamp(2.6rem,10vw,4.1rem); }
  .content-section { padding: 52px 0; }
}
@media (max-width: 580px) {
  .services-grid, .proof-grid { grid-template-columns: 1fr; }
  .panel-grid { border-left: 0; border-right: 0; }
  .services-panel, .contact-panel { padding-left: 0; padding-right: 0; }
  .phone strong { font-size: 1.35rem; }
  .footer-grid { flex-direction: column; justify-content: center; gap: 8px; padding: 12px 0; text-align: center; }
  .button-primary, .button-secondary { width: 100%; }
  .feature-card, .detail-card, .cta-card { padding: 24px; }
}
