:root {
  --ink: #06162f;
  --navy: #071b35;
  --blue: #0e4d92;
  --gold: #c58b2a;
  --gold-light: #f1c675;
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #627084;
  --line: rgba(9, 28, 57, .14);
  --shadow: 0 24px 70px rgba(5, 17, 37, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: rgba(241, 198, 117, .55) var(--navy);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: rgba(241, 198, 117, .56);
  border: 3px solid var(--navy);
  border-radius: 999px;
}

body {
  width: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 22, 47, .94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: clamp(150px, 16vw, 206px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .24));
}

.footer-logo {
  width: 172px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: .9rem;
  font-weight: 700;
}

.nav a {
  opacity: .82;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.nav-toggle svg,
.button svg,
.email-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px clamp(18px, 6vw, 84px) 34px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 13, 30, .94), rgba(5, 22, 48, .84) 38%, rgba(5, 22, 48, .28) 72%);
}

.hero-media,
.contact-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero-coffee-v3.jpg") center right / cover no-repeat;
}

.hero-content {
  max-width: 780px;
  padding-bottom: clamp(40px, 8vh, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 14ch;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.4vw, 6.5rem);
  line-height: .95;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  font-weight: 800;
}

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

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: #051225;
  background: var(--gold-light);
}

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

.button:hover {
  transform: translateY(-1px);
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1020px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(3, 13, 30, .72);
  backdrop-filter: blur(12px);
}

.hero-strip span {
  padding: 18px 22px;
  color: rgba(255, 255, 255, .76);
}

.hero-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.hero-strip strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 84px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 38px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  color: #27364c;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.value-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.value-grid article,
.steps article,
.readiness-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}

.icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--gold);
  background: #f2eadc;
  border-radius: 8px;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio {
  background: var(--white);
}

.portfolio-layout,
.retail-value {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, .86fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.portfolio-layout img,
.retail-value img,
.supply-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.portfolio-copy {
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--gold) 0 35%, transparent 38%);
}

.supply {
  background: #eef3f7;
}

.supply-image {
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.supply-image img {
  display: block;
  box-shadow: none;
}

.steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 1.35rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: var(--navy);
  color: var(--white);
}

.split p {
  color: rgba(255, 255, 255, .78);
}

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

.metrics span {
  padding: 9px 12px;
  color: var(--gold-light);
  border: 1px solid rgba(241, 198, 117, .34);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
}

.readiness-panel {
  color: var(--ink);
  background: var(--white);
}

.retail-value {
  background: var(--white);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.feature-list article {
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}

.contact {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 84px);
  color: var(--white);
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 10, 22, .97), rgba(3, 10, 22, .82) 46%, rgba(3, 10, 22, .32));
}

.contact-media {
  background-image: url("assets/contact-coffee.jpg");
}

.contact-content {
  max-width: 690px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 28px;
  padding: 14px 16px;
  color: var(--gold-light);
  border: 1px solid rgba(241, 198, 117, .36);
  border-radius: 8px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
}

address {
  font-style: normal;
  color: rgba(255, 255, 255, .8);
}

.company-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 14px;
  margin: 30px 0 0;
}

.company-data div {
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.company-data dt {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.company-data dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: rgba(255, 255, 255, .76);
  background: #030b18;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 14px;
    background: rgba(6, 22, 47, .98);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
  }

  .nav.is-open {
    display: grid;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(2.55rem, 5.45vw, 3.75rem);
  }

  .hero-strip,
  .intro-grid,
  .portfolio-layout,
  .split,
  .retail-value {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 760px;
    padding-top: 112px;
  }

  h1 {
    max-width: 11.5ch;
    font-size: clamp(2.35rem, 10.6vw, 3.75rem);
  }

  .hero::before,
  .contact::before {
    background: rgba(3, 13, 30, .84);
  }

  .hero-strip,
  .value-grid,
  .steps,
  .company-data {
    grid-template-columns: 1fr;
  }

  .hero-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .portfolio-layout,
  .retail-value {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer {
    display: grid;
  }
}
