:root {
  color-scheme: light;
  --bg: #f8f7f2;
  --ink: #101316;
  --muted: #5c6369;
  --line: #d9d6ca;
  --accent: #1e6b5a;
  --accent-dark: #154a40;
  --surface: #ffffff;
  --shadow: 0 24px 70px rgba(20, 24, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(30, 107, 90, 0.12), transparent 28rem),
    linear-gradient(140deg, #f8f7f2 0%, #f0efe8 54%, #e8eee9 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(16, 19, 22, 0.1);
}

.brand,
.nav-links,
.hero-actions,
.launch-badge {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.95rem;
}

.nav-links {
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  padding: 44px 0 104px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: start;
  gap: 40px;
}

.launch-badge {
  justify-self: end;
  max-width: 390px;
  gap: 14px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(16, 19, 22, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.launch-logos {
  display: grid;
  grid-template-columns: 88px 44px;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.launch-logos img {
  display: block;
  width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.launch-logos img:last-child {
  aspect-ratio: 1;
}

.launch-badge:hover {
  border-color: rgba(16, 19, 22, 0.34);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 960px;
  margin: 20px 0 0;
  font-size: clamp(4rem, 14vw, 10.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  line-height: 1.45;
}

.project-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 500;
  line-height: 1.55;
}

.project-note strong {
  color: var(--accent-dark);
  font-weight: 800;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(16, 19, 22, 0.18);
}

.button.secondary:hover {
  border-color: rgba(16, 19, 22, 0.38);
}

.content-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 48px;
  padding: 52px 0;
  border-top: 1px solid rgba(16, 19, 22, 0.12);
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.04;
}

.content-section p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.contact-section {
  padding-bottom: 72px;
}

.contact-section p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-section a {
  color: var(--accent-dark);
  font-weight: 700;
  text-underline-offset: 4px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.form-honey {
  position: absolute;
  left: -9999px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
}

.inquiry-form span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 19, 22, 0.18);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  line-height: 1.45;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 148px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 107, 90, 0.14);
}

.inquiry-form .button {
  width: fit-content;
  cursor: pointer;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 68px;
  }

  .nav-links {
    gap: 14px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 40px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h1 {
    font-size: clamp(3.35rem, 19vw, 7rem);
  }

  .content-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 42px 0;
  }
}

@media (max-width: 460px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 24px;
  }

  .button {
    width: 100%;
  }

  .launch-badge {
    align-items: flex-start;
    flex-direction: column;
    justify-self: stretch;
    max-width: 100%;
  }

  .inquiry-form .button {
    width: 100%;
  }
}
