:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --ink: #303030;
  --muted: #6f6b64;
  --line: #ded9cf;
  --coffee: #7b593d;
  --green: #475d4a;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: clamp(92px, 11vw, 132px);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.language-link {
  color: var(--ink);
  font-weight: 700;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  min-height: calc(100svh - 72px);
  padding: clamp(44px, 8vw, 108px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  align-content: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coffee);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.business-item p,
.product-copy p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.75;
}

.businesses {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--surface);
}

.section-heading,
.business-grid,
.product {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.business-item {
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--surface);
}

.item-index {
  display: block;
  margin-bottom: clamp(64px, 10vw, 132px);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.product {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 80px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.product-copy {
  align-self: end;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 12px;
  padding: 6px 12px;
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer a {
  color: var(--ink);
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 104px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    min-height: calc(100svh - 104px);
  }

  .business-grid,
  .product {
    grid-template-columns: 1fr;
  }

  .business-item {
    min-height: 300px;
  }

  .item-index {
    margin-bottom: 72px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-copy p:not(.eyebrow),
  .business-item p,
  .product-copy p {
    font-size: 16px;
  }
}
