:root {
  --ink: #0d1314;
  --panel: #151b1c;
  --muted: #5d6863;
  --sage: #87958a;
  --sage-dark: #607064;
  --cream: #f3f1e9;
  --line: #d8d7cd;
  --white: #ffffff;
  --cyan: #29d4da;
  --shadow: 0 24px 70px rgba(13, 19, 20, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(13, 19, 20, .78), rgba(13, 19, 20, .12));
}

.brand {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand span:first-child {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.dot {
  color: var(--cyan);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  color: var(--ink);
  background: var(--cyan);
}

.secondary-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .46);
}

.hero {
  position: relative;
  min-height: 760px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 760px;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 19, 20, .92) 0%, rgba(13, 19, 20, .68) 34%, rgba(13, 19, 20, .14) 72%);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  left: clamp(22px, 7vw, 86px);
  bottom: clamp(42px, 12vw, 120px);
  width: min(620px, calc(100% - 44px));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  max-width: 100%;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: 0;
  max-width: 11ch;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-strip div {
  padding: 28px clamp(20px, 4vw, 54px);
  background: #e9e8df;
}

.proof-strip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.proof-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 10vw, 124px) clamp(20px, 6vw, 78px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) 1.15fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.section-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.benefit-grid article,
.locations article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 900;
}

.benefit-grid p,
.locations p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(34px, 6vw, 74px) clamp(20px, 6vw, 78px);
  background: var(--ink);
  color: var(--white);
}

.image-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.image-band p {
  color: rgba(255, 255, 255, .72);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(255, 255, 255, .88);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-card {
  grid-column: span 2;
  min-height: 260px;
  padding: 32px;
  border-radius: 8px;
}

.dark-card {
  color: var(--white);
  background: var(--panel);
}

.machine-section {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: clamp(32px, 8vw, 110px);
  align-items: center;
  padding: clamp(70px, 10vw, 124px) clamp(20px, 7vw, 96px);
  background: #fffdf6;
}

.machine-section p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.12rem;
}

.machine-section img {
  width: min(100%, 360px);
  margin-inline: auto;
  filter: drop-shadow(var(--shadow));
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.specs span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 7vw, 82px) clamp(20px, 6vw, 78px);
  background: var(--sage-dark);
  color: var(--white);
}

.cta img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255, 255, 255, .82);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 32px clamp(20px, 6vw, 78px);
  color: var(--white);
  background: var(--ink);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

address {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, .78);
  font-style: normal;
  text-align: right;
}

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

  .nav {
    display: none;
  }

  .hero,
  .hero-image {
    min-height: 720px;
    height: 720px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(13, 19, 20, .5) 0%, rgba(13, 19, 20, .9) 56%, rgba(13, 19, 20, .96) 100%);
  }

  .hero-image {
    object-position: 42% center;
  }

  .proof-strip,
  .intro,
  .image-band,
  .machine-section,
  .cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .locations {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-column: span 1;
  }

  .footer,
  address {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 1.28rem;
  }

  .hero,
  .hero-image {
    min-height: 690px;
    height: 690px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.2rem, 11.5vw, 3.15rem);
    overflow-wrap: normal;
  }

  h2 {
    font-size: 1.78rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .section,
  .image-band,
  .machine-section,
  .cta {
    overflow: hidden;
  }

  .hero-panel {
    left: 20px;
    right: auto;
    width: calc(100vw - 40px);
    max-width: 350px;
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 300px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .benefit-grid article,
  .locations article,
  .location-card {
    min-height: auto;
  }
}
