:root {
  --black: #101820;
  --black-soft: #17212b;
  --orange: #ff6a00;
  --orange-dark: #d95a00;
  --teal: #1197a4;
  --teal-bright: #11c2c9;
  --teal-dark: #0c6670;
  --cream: #fff8ee;
  --white: #ffffff;
  --gray: #64748b;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 60px rgba(16, 24, 32, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-header {
  background:
    radial-gradient(circle at 84% 10%, rgba(17, 151, 164, 0.42), transparent 32rem),
    radial-gradient(circle at 14% 88%, rgba(255, 106, 0, 0.24), transparent 30rem),
    linear-gradient(135deg, var(--black), #111827 58%, #081016);
  color: var(--white);
  overflow: hidden;
}
.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  position: relative;
  z-index: 5;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: -0.035em; font-size: 1.08rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 14px; background: var(--white); padding: 4px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 800; font-size: 0.94rem; }
.nav-links a { color: rgba(255, 255, 255, 0.86); }
.nav-links a:hover, .nav-links a:focus { color: var(--white); }
.nav-cta { background: var(--orange); color: var(--black) !important; padding: 10px 16px; border-radius: 999px; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--white); border-radius: 999px; }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 950; font-size: 0.78rem; margin: 0 0 12px; }
.hero h1 { font-size: clamp(2.55rem, 5.6vw, 5.15rem); line-height: 0.94; letter-spacing: -0.075em; margin: 0; max-width: 900px; }
.hero-text { font-size: 1.18rem; max-width: 710px; color: rgba(255, 255, 255, 0.78); margin: 24px 0 32px; }
.hero-actions, .trust-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; border: 0; border-radius: 999px; padding: 0 22px; font-weight: 950; cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.button:hover, .button:focus { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: var(--black); box-shadow: 0 16px 32px rgba(255, 106, 0, 0.24); }
.button.primary:hover, .button.primary:focus { background: #ff851f; }
.button.secondary { border: 1px solid rgba(255, 255, 255, 0.24); color: var(--white); background: rgba(255, 255, 255, 0.08); }
.trust-row { margin-top: 34px; color: rgba(255, 255, 255, 0.76); }
.trust-row span { border-left: 3px solid var(--teal-bright); padding-left: 12px; }
.hero-media { position: relative; }
.hero-media::before { content: ""; position: absolute; inset: 22px -20px -20px 22px; border: 2px solid rgba(17, 194, 201, 0.45); border-radius: 36px; z-index: 0; }
.hero-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.18); }
.hero-media-card { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 22px; display: grid; gap: 4px; padding: 18px; border-radius: 22px; background: rgba(16, 24, 32, 0.86); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.16); }
.hero-media-card strong { color: var(--white); font-size: 1.05rem; }
.hero-media-card span { color: rgba(255,255,255,0.72); }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 88px 0; }
.intro-grid, .service-grid, .process-grid, .inventory-grid { display: grid; gap: 22px; }
.intro-grid { grid-template-columns: repeat(3, 1fr); }
.intro-grid article, .service-card, .process-grid article, .quote-form, .contact-card, .inventory-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 20px 45px rgba(16, 24, 32, 0.06); }
.intro-grid article { padding: 28px; }
.icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(17, 151, 164, 0.14); color: var(--teal-dark); font-weight: 950; }
h2, h3, p { overflow-wrap: break-word; }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1; letter-spacing: -0.06em; margin: 0; }
h3 { font-size: 1.28rem; letter-spacing: -0.03em; margin: 18px 0 8px; }
p { color: var(--gray); }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.split p:last-child { margin-bottom: 0; }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.section-heading p:last-child { font-size: 1.08rem; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card { padding: 28px; position: relative; overflow: hidden; }
.service-card::after { content: ""; position: absolute; right: -28px; top: -28px; width: 90px; height: 90px; border-radius: 50%; background: rgba(255, 106, 0, 0.13); }
.service-icon { font-size: 2rem; }

.inventory-section { padding-top: 54px; }
.inventory-grid { grid-template-columns: 1.08fr 0.92fr; align-items: stretch; }
.inventory-card { overflow: hidden; display: grid; }
.inventory-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.inventory-card div { padding: 22px 24px 26px; }
.inventory-card h3 { margin-top: 0; }
.inventory-card.feature { grid-row: span 2; background: var(--black); color: var(--white); }
.inventory-card.feature img { aspect-ratio: 4 / 5; }
.inventory-card.feature p { color: rgba(255,255,255,0.72); }
.inventory-card.feature h3 { color: var(--white); }

.process-section { width: 100%; max-width: none; background: var(--black); color: var(--white); padding-left: max(20px, calc((100vw - 1180px) / 2)); padding-right: max(20px, calc((100vw - 1180px) / 2)); }
.process-section p { color: rgba(255, 255, 255, 0.72); }
.process-grid { grid-template-columns: repeat(4, 1fr); }
.process-grid article { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.12); padding: 26px; }
.process-grid span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--orange); color: var(--black); font-weight: 950; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tags span { background: rgba(17, 151, 164, 0.14); color: var(--teal-dark); border: 1px solid rgba(17, 151, 164, 0.26); padding: 9px 14px; border-radius: 999px; font-weight: 850; }
.quote-section { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 46px; align-items: start; }
.quote-copy { position: sticky; top: 24px; }
.contact-card { padding: 22px; display: grid; gap: 12px; margin-top: 28px; }
.contact-card a { color: var(--black); font-weight: 950; }
.contact-card a:hover, .contact-card a:focus { color: var(--orange-dark); }
.quote-form { padding: 30px; display: grid; gap: 18px; }
label { display: grid; gap: 8px; color: var(--black); font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: #fffdf9; color: var(--black); }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(17, 151, 164, 0.2); border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { margin: 0; font-size: 0.92rem; }
.form-honey { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.quote-form .button:disabled { cursor: wait; opacity: 0.72; transform: none; }
.form-status { min-height: 1.5em; margin: -6px 0 0; font-weight: 850; }
.form-status.success { color: #087443; }
.form-status.error { color: #b42318; }
.site-footer { background: var(--black); color: var(--white); padding: 46px max(20px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 34px; align-items: start; }
.site-footer p, .site-footer a { color: rgba(255, 255, 255, 0.72); }
.footer-brand span, .footer-links a:hover, .footer-links a:focus { color: var(--white); }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; font-weight: 850; }
.footer-small { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.14); padding-top: 22px; margin: 0; font-size: 0.9rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 80px 20px auto 20px; padding: 24px; display: none; flex-direction: column; align-items: stretch; background: var(--black-soft); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 24px; box-shadow: var(--shadow); }
  body.nav-open .nav-links { display: flex; }
  .hero, .split, .quote-section { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .intro-grid, .service-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .inventory-card.feature { grid-row: auto; }
  .inventory-card.feature img { aspect-ratio: 4 / 3; }
  .quote-copy { position: static; }
}
@media (max-width: 640px) {
  .nav, .hero, .section { width: min(100% - 28px, 1180px); }
  .brand span { display: none; }
  .hero { padding-bottom: 76px; }
  .hero-actions .button { width: 100%; }
  .hero-media::before { display: none; }
  .intro-grid, .service-grid, .process-grid, .form-row, .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  h2 { font-size: 2.2rem; }
}
