:root {
  --ink: #1f2630;
  --muted: #657181;
  --line: #dde3ea;
  --panel: #f6f8fb;
  --panel-strong: #eef2f5;
  --brand: #d89007;
  --brand-dark: #9e6600;
  --steel: #2f343a;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(24, 31, 39, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  max-width: 820px;
}

h2 {
  font-size: clamp(32px, 5vw, 56px);
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 234, 0.8);
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto auto;
  left: 0;
  padding: 16px max(20px, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand img {
  height: 24px;
  width: auto;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.brand span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  color: #4d5866;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  background: var(--brand);
  bottom: -5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-phone,
.header-rfq {
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
  padding: 12px 16px;
}

.header-rfq {
  background: var(--brand);
  border: 0;
  cursor: pointer;
  font: inherit;
}

.header-rfq:hover {
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: calc(100vh - 73px);
  background: var(--steel);
  color: var(--white);
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-copy {
  align-self: center;
  padding: 72px max(28px, calc((100vw - var(--max)) / 2)) 72px 54px;
}

.eyebrow,
.section-kicker {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-lede {
  color: #d7dee7;
  font-size: 20px;
  margin-top: 26px;
  max-width: 620px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

.button.primary {
  background: var(--brand);
  color: var(--white);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: currentColor;
}

.section .button.secondary {
  background: var(--white);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  transform: translateY(-50%);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip div {
  min-height: 112px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  font-size: 24px;
}

.trust-strip span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: 72px 20px;
}

.intro {
  padding-top: 20px;
}

.intro-grid,
.section-heading,
.split,
.specialty,
.shipping-contact,
.cta {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro-grid p,
.section-heading p,
.accessories > p,
.warning > p {
  font-size: 19px;
}

.section-heading {
  align-items: end;
  margin-bottom: 34px;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 900;
  justify-self: end;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 270px;
  padding: 26px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 38, 48, 0.1);
  transform: translateY(-3px);
}

.service-card span {
  color: var(--brand);
  display: block;
  font-weight: 900;
  margin-bottom: 24px;
}

.service-card p {
  margin-top: 14px;
}

.service-card a {
  color: var(--brand-dark);
  display: inline-block;
  font-weight: 900;
  margin-top: 22px;
}

.split {
  align-items: center;
  border-top: 1px solid var(--line);
}

.split p + p {
  margin-top: 16px;
}

.image-stack > img,
.photo-panel img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 330px;
  object-fit: cover;
  width: 100%;
}

.comparison {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
}

figure {
  margin: 0;
}

figure img {
  border-radius: var(--radius);
  height: 160px;
  object-fit: cover;
  width: 100%;
}

figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

.process {
  background: var(--panel);
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.steps,
.option-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps div,
.option-grid article,
.shipping-box,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.steps span {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 22px;
  width: 34px;
}

.steps p,
.option-grid p {
  margin-top: 12px;
}

.specialty {
  align-items: center;
}

.photo-panel {
  display: grid;
  gap: 16px;
}

.photo-panel img {
  height: 250px;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.feature-list div {
  border-left: 4px solid var(--brand);
  padding-left: 18px;
}

.feature-list p {
  margin-top: 7px;
}

.accessories,
.warning {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.warning {
  background: var(--steel);
  color: var(--white);
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.warning p {
  color: #d8dee5;
}

.shipping-contact {
  align-items: start;
}

address {
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
  margin-top: 24px;
}

.shipping-box ul {
  color: var(--muted);
  margin: 16px 0 0;
  padding-left: 20px;
}

.shipping-box li + li {
  margin-top: 10px;
}

.cta {
  align-items: center;
  background: var(--panel-strong);
  border-radius: var(--radius);
  margin-bottom: 72px;
  padding: 54px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card a:not(.button) {
  color: var(--brand-dark);
  font-size: 24px;
  font-weight: 900;
}

.contact-card span {
  color: var(--muted);
}

.site-footer {
  background: #24282d;
  color: var(--white);
  display: grid;
  gap: 36px;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  padding: 54px max(20px, calc((100vw - var(--max)) / 2));
}

.site-footer img {
  filter: brightness(1.1);
  height: auto;
  margin-bottom: 22px;
  width: 280px;
}

.site-footer h2 {
  font-size: 18px;
  margin-bottom: 18px;
}

.site-footer a,
.site-footer p {
  color: #c6cdd5;
  display: block;
}

.site-footer a + a {
  margin-top: 8px;
}

.subpage {
  background: var(--panel);
}

.page-hero {
  align-items: center;
  background: var(--steel);
  color: var(--white);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  padding: 78px max(20px, calc((100vw - var(--max)) / 2));
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero-image,
.page-hero-card,
.video-frame {
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.page-hero-image {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.page-hero-card {
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: 12px;
  padding: 34px;
}

.page-hero-card strong {
  color: var(--brand-dark);
  font-size: 34px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-actions .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.page-shell {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 280px minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 54px 20px 80px;
}

.side-nav {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 92px;
}

.side-nav h2 {
  color: var(--ink);
  font-size: 14px;
  margin: 20px 0 10px;
  text-transform: uppercase;
}

.side-nav h2:first-child {
  margin-top: 0;
}

.side-nav a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: block;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 0;
}

.side-nav a:hover {
  color: var(--brand-dark);
}

.page-content {
  display: grid;
  gap: 24px;
}

.content-block,
.contact-wide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}

.content-block h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
}

.content-block p + p {
  margin-top: 16px;
}

.content-block a,
.contact-wide a {
  color: var(--brand-dark);
  font-weight: 900;
}

.check-list {
  color: var(--muted);
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.page-gallery {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-gallery figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-gallery img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.page-gallery figcaption {
  padding: 0 16px 16px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #111;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.contact-wide {
  display: grid;
  gap: 12px;
}

.contact-wide a {
  font-size: 28px;
}

.contact-wide address {
  margin: 0;
}

.floating-rfq,
.floating-bot {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(24, 31, 39, 0.22);
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  position: fixed;
  right: 20px;
  z-index: 20;
}

.floating-rfq {
  background: var(--brand);
  bottom: 82px;
  padding: 15px 20px;
}

.floating-bot {
  background: var(--ink);
  bottom: 24px;
  padding: 13px 18px;
}

.bot-open .floating-rfq {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.modal-backdrop {
  align-items: center;
  background: rgba(31, 38, 48, 0.62);
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 40;
}

.modal-backdrop:not([hidden]) {
  display: flex;
}

.rfq-modal,
.bot-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}

.rfq-modal {
  max-height: min(860px, 92vh);
  max-width: 760px;
  overflow: auto;
  padding: 34px;
  position: relative;
  width: 100%;
}

.rfq-modal h2,
.bot-panel h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.modal-close {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 24px;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
}

.rfq-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rfq-form label {
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
  text-transform: uppercase;
}

.rfq-form .full,
.form-note,
.form-status,
.form-actions {
  grid-column: 1 / -1;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  text-transform: none;
  width: 100%;
}

.rfq-form textarea {
  resize: vertical;
}

.form-note {
  background: var(--panel);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 12px;
}

.form-status {
  color: var(--muted);
  font-weight: 800;
  min-height: 24px;
}

.form-status.success {
  color: #226b3a;
}

.form-status.error {
  color: #a43421;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.bot-panel {
  border: 1px solid rgba(24, 31, 39, 0.08);
  bottom: 20px;
  max-width: 350px;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 18px;
  width: calc(100vw - 40px);
  z-index: 35;
}

.bot-panel:not([hidden]) {
  display: block;
}

.bot-panel .modal-close {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  height: 30px;
  right: 14px;
  top: 14px;
  width: 30px;
}

.bot-header {
  background: #202832;
  color: var(--white);
  padding: 18px 44px 14px 18px;
}

.bot-header .section-kicker {
  color: var(--brand);
  font-size: 11px;
  margin-bottom: 6px;
}

.bot-header h2 {
  color: var(--white);
  font-size: 22px;
  line-height: 1.05;
  margin-bottom: 6px;
}

.bot-header p:last-child {
  color: #cfd6df;
  font-size: 13px;
  line-height: 1.45;
}

.bot-messages {
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 9px;
  margin-bottom: 0;
  max-height: 245px;
  overflow: auto;
  padding: 14px;
}

.bot-messages p {
  color: var(--muted);
}

.bot-messages .bot-answer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 8px 24px rgba(24, 31, 39, 0.06);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 11px;
}

.bot-messages .bot-user {
  background: #d89007;
  border-radius: 12px 12px 4px 12px;
  color: var(--white);
  justify-self: end;
  max-width: 90%;
  padding: 10px 11px;
}

.bot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bot-actions a,
.bot-actions button {
  background: #fff8e8;
  border: 1px solid #f1d493;
  border-radius: 999px;
  color: var(--brand-dark);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
}

.bot-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 0;
  padding: 12px 14px 9px;
}

.bot-prompts button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.bot-prompts button:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.bot-form {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 48px;
  margin-bottom: 0;
  padding: 0 14px 12px;
}

.bot-form input {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  min-width: 0;
  padding: 11px 13px;
}

.bot-form button {
  background: var(--brand);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  padding: 0;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    background: var(--ink);
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    display: block;
    font-weight: 900;
    justify-self: end;
    padding: 11px 14px;
  }

  .site-nav,
  .header-rfq,
  .header-phone {
    display: none;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-rfq,
  .site-header.nav-open .header-phone {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .site-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    border-top: 1px solid var(--line);
    padding: 13px 0;
  }

  .header-phone,
  .header-rfq {
    justify-self: start;
  }

  .hero,
  .page-hero,
  .page-shell,
  .intro-grid,
  .section-heading,
  .split,
  .specialty,
  .accessories,
  .warning,
  .shipping-contact,
  .cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 380px;
  }

  .hero-copy {
    padding: 42px 24px 70px;
  }

  .trust-strip,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    margin: 20px;
    transform: none;
  }

  .text-link {
    justify-self: start;
  }

  .side-nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .brand img {
    height: auto;
    width: 24px;
  }

  .brand span {
    font-size: 16px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-media {
    min-height: 320px;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .option-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .section {
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .cta {
    margin: 20px 20px 54px;
    padding: 34px 24px;
  }

  .contact-card a:not(.button) {
    font-size: 20px;
  }

  .page-hero {
    padding: 44px 20px;
  }

  .page-gallery {
    grid-template-columns: 1fr;
  }

  .content-block,
  .contact-wide {
    padding: 24px;
  }

  .contact-wide a {
    font-size: 21px;
  }

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

  .rfq-modal {
    padding: 26px 20px;
  }

  .floating-rfq,
  .floating-bot {
    right: 14px;
  }

  .floating-rfq {
    bottom: 74px;
    padding: 13px 16px;
  }

  .floating-bot {
    bottom: 18px;
    padding: 12px 16px;
  }

  .bot-panel {
    bottom: 12px;
    left: 12px;
    max-height: 82vh;
    max-width: none;
    right: 12px;
    width: auto;
  }

  .bot-messages {
    max-height: 220px;
  }
}
