:root {
  --ink: #16253a;
  --navy: #10263e;
  --gold: #b28a35;
  --gold-light: #e9d7a5;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --muted: #667283;
  --line: #e6dfd0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.6 "DM Sans", sans-serif;
}

/* Header & Brand Layout */
.site-header {
  height: 94px;
  padding: 12px max(3.3vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-brand img {
  display: block;
  width: 250px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(1.8) contrast(0.7);
  mix-blend-mode: screen;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone {
  color: var(--muted) !important;
}

.button {
  display: inline-flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  padding: 16px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #fffdf8 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: #987426;
}

.button-small {
  padding: 13px 20px;
}

/* Hero Section */
.hero {
  min-height: 650px;
  padding: 105px max(5vw, 45px);
  background: linear-gradient(115deg, #f9f5eb 0%, #fffdf8 57%, #efe3c5 100%);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "SR";
  position: absolute;
  right: -2vw;
  bottom: -21vw;
  font: 700 36vw/1 "Playfair Display";
  color: rgba(178, 138, 53, 0.08);
  pointer-events: none;
}

.hero-copy {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
  margin: 0 0 23px;
}

.eyebrow:before {
  content: "";
  display: inline-block;
  width: 45px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 16px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.07;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 6vw, 90px);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(38px, 4.3vw, 64px);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 27px;
}

em {
  color: var(--gold);
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 710px;
  margin: 30px 0;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

.text-link span {
  color: var(--gold);
  font-size: 20px;
  margin-left: 8px;
}

.hero-card {
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(30, 41, 52, 0.08);
  position: relative;
  z-index: 1;
}

.hero-stat {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.hero-stat strong {
  font: 500 55px/1 "Playfair Display";
  color: var(--navy);
}

.hero-stat strong span {
  color: var(--gold);
  font-size: 0.7em;
}

.hero-stat>span {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-bottom: 6px;
}

.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.trust-strip p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  margin: 0;
}

.trust-strip div {
  display: flex;
  gap: 22px;
  align-items: center;
  font: 500 19px "Playfair Display";
}

.trust-strip b {
  color: var(--gold);
}

/* Main Sections Layout */
.section-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding: 130px max(5vw, 45px);
}

.manifesto>div:first-child>p:not(.eyebrow),
.fleet>div:first-child>p:not(.eyebrow),
.safety>div:first-child>p:not(.eyebrow),
.quote>div>p:not(.eyebrow),
.roi>div>p:not(.eyebrow) {
  color: var(--muted);
  max-width: 520px;
  margin: 28px 0;
}

.pillars article {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.pillars article:last-child {
  border-bottom: 1px solid var(--line);
}

.pillars span {
  font: 500 54px/1 "Playfair Display";
  color: var(--gold-light);
}

.pillars h3 {
  font-size: 30px;
}

.pillars p,
.feature p {
  color: var(--muted);
  margin: 10px 0 0;
}

/* Capabilities */
.capabilities {
  padding: 118px 5vw;
  background: #f1ebdf;
}

.capabilities h2 {
  margin-bottom: 60px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
  min-height: 260px;
}

.feature.featured {
  border-color: #d1ba7f;
  background: #fffcf5;
}

.feature i {
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 30px;
  font-style: normal;
  width: 70px;
  height: 70px;
  border: 1px solid var(--gold-light);
  margin-bottom: 45px;
}

/* Fleet */
.fleet {
  background: var(--paper);
}

.fleet-list {
  border-top: 1px solid var(--line);
}

.fleet-list article {
  display: grid;
  grid-template-columns: 50px 1fr 1.1fr;
  align-items: baseline;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.fleet-list b {
  color: var(--gold);
  font-family: "Playfair Display";
}

.fleet-list h3 {
  font-size: 29px;
}

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

/* ROI Estimator */
.roi {
  padding: 118px 5vw;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.roi h2 {
  color: #fff;
}

.roi .eyebrow {
  color: var(--gold-light);
}

.roi>div>p:not(.eyebrow) {
  color: #c3ced9;
}

.roi label {
  display: block;
  margin: 42px 0 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #c3ced9;
}

.roi output {
  float: right;
  font: 500 34px/1 "Playfair Display";
  color: var(--gold-light);
  text-transform: none;
}

input[type="range"] {
  accent-color: var(--gold);
  display: block;
  width: 100%;
  margin-top: 17px;
}

.savings {
  padding: 54px;
  background: #193450;
  border: 1px solid #4d6175;
}

.savings>p {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #b9c7d6;
}

.savings>strong {
  display: block;
  font: 500 clamp(42px, 5vw, 75px) / 1.1 "Playfair Display";
  color: var(--gold-light);
  letter-spacing: -0.05em;
}

.savings small {
  display: block;
  margin: 15px 0 34px;
  color: #c3ced9;
  font-size: 16px;
}

.savings>div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #4d6175;
  margin-bottom: 35px;
}

.savings>div span {
  padding: 22px 17px;
  color: #b9c7d6;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.savings>div span+span {
  border-left: 1px solid #4d6175;
}

.savings>div b {
  display: block;
  font: 500 28px "Playfair Display";
  color: #fff;
  text-transform: none;
}

.savings .button {
  width: 100%;
  border: 0;
}

/* Safety Section */
.safety {
  background: linear-gradient(110deg, #fffdf8, #f4ecdb);
}

.safety-grid {
  gap: 16px;
}

.safety-grid .feature {
  padding: 30px;
  min-height: 220px;
}

.safety-grid .feature i {
  width: 52px;
  height: 52px;
  font-size: 23px;
  margin-bottom: 28px;
}

.safety-grid h3 {
  font-size: 24px;
}

.safety-stats {
  display: flex;
  gap: 70px;
  margin-top: 62px;
}

.safety-stats span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.safety-stats b {
  display: block;
  font: 500 42px "Playfair Display";
  color: var(--gold);
}

/* Contact / Quote Section */
.quote {
  background: #efe8da;
}

.contact {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font: 500 24px "Playfair Display";
  margin-top: 20px;
}

form {
  background: var(--paper);
  padding: 42px;
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

form label {
  display: block;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

form input,
form select,
textarea {
  font: 16px "DM Sans";
  color: var(--ink);
  width: 100%;
  padding: 14px;
  border: 1px solid #d9d5cd;
  background: #fffdf8;
  margin-top: 7px;
}

textarea {
  height: 110px;
  resize: vertical;
}

form .button {
  width: 100%;
  border: 0;
}

.form-success {
  color: #58723f;
  font-weight: 700;
  min-height: 20px;
  margin-bottom: 0;
}

/* Footer Section */
footer {
  background: var(--navy);
  color: #d6dde6;
  padding: 75px 5vw 25px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.4fr;
  gap: 70px;
  position: relative;
}

footer p {
  line-height: 2;
  margin: 0;
}

.footer-brand p {
  margin-top: 15px;
}

footer .eyebrow {
  color: var(--gold-light);
  margin-bottom: 15px;
}

footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  color: #91a0af;
}

/* Responsive Media Queries */
@media (max-width: 900px) {

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

  .brand img {
    height: 42px;
  }

  .hero,
  .section-grid,
  .roi {
    grid-template-columns: 1fr;
    padding: 80px 7vw;
    gap: 45px;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip {
    display: block;
  }

  .trust-strip div {
    margin-top: 12px;
    overflow: hidden;
    white-space: nowrap;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .fleet-list article {
    grid-template-columns: 40px 1fr;
  }

  .fleet-list p {
    grid-column: 2;
  }

  .savings {
    padding: 32px;
  }

  .safety-stats {
    margin-top: 40px;
  }

  .site-header {
    height: 80px;
  }

  .section-grid,
  .capabilities,
  .roi {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 560px) {
  .header-actions .button {
    padding: 10px 12px;
    font-size: 11px;
  }

  .brand img {
    height: 36px;
  }

  .hero {
    padding-top: 65px;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card {
    padding: 26px;
  }

  .hero-stat {
    grid-template-columns: 100px 1fr;
  }

  .hero-stat strong {
    font-size: 45px;
  }

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

  .savings>div {
    grid-template-columns: 1fr;
  }

  .savings>div span+span {
    border-left: 0;
    border-top: 1px solid #4d6175;
  }

  .safety-stats {
    gap: 30px;
  }

  h1 {
    font-size: 51px;
  }

  h2 {
    font-size: 41px;
  }
}