:root {
  --ink: #1d1b18;
  --muted: #6f675d;
  --line: #e6dfd4;
  --paper: #fbfaf6;
  --warm: #efe4d4;
  --sage: #687565;
  --olive: #3e4738;
  --citron: #e5c85b;
  --terracotta: #a9644a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(40, 34, 27, 0.14);
  --sans: Ubuntu, "Trebuchet MS", Arial, sans-serif;
}

@font-face {
  font-display: swap;
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Ubuntu-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Ubuntu-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Ubuntu;
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/Ubuntu-Bold.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(20px, 4vw, 56px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

.site-header:not(.site-header--dark) {
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line);
  position: sticky;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  color: #575757;
  display: inline-flex;
  flex-wrap: wrap;
  font-family: var(--sans);
  gap: 8px;
  line-height: 1;
}

.brand-word {
  align-items: center;
  display: inline-flex;
  font-size: clamp(1.32rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-globe {
  flex: 0 0 auto;
  height: 1.55em;
  margin-inline: -0.02em;
  overflow: visible;
  transform: translateY(-0.03em);
  width: 1.55em;
}

.globe-lemon {
  fill: #f7cb00;
}

.globe-ocean {
  fill: #2f9cbd;
}

.globe-land {
  fill: #5fb274;
}

.globe-line {
  fill: none;
  opacity: 0.78;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-linecap: round;
  stroke-width: 4;
}

.globe-slice {
  fill: none;
  stroke: #f7cb00;
  stroke-linecap: round;
  stroke-width: 8;
}

.brand-sub {
  color: currentColor;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-left: 2px;
  text-transform: uppercase;
}

.site-header--dark {
  color: var(--white);
}

.site-header--dark .brand {
  color: rgba(255, 255, 255, 0.94);
}

.site-nav {
  align-items: center;
  display: flex;
  font-size: 0.86rem;
  gap: 24px;
}

.nav-cta {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 15px;
}

.hero {
  color: var(--white);
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  place-items: end start;
  position: relative;
}

.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-media {
  background-image: url("/assets/lemonly-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 23, 20, 0.76) 0%, rgba(25, 23, 20, 0.48) 43%, rgba(25, 23, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(25, 23, 20, 0.55) 0%, rgba(25, 23, 20, 0.06) 58%);
}

.hero-content {
  max-width: 820px;
  padding: 140px clamp(20px, 7vw, 96px) 86px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--terracotta);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3df8a;
}

h1,
h2 {
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(2.85rem, 6.3vw, 5.9rem);
  font-weight: 700;
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.6rem);
  font-weight: 700;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin-top: 24px;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.93rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.hero .button-primary {
  background: var(--citron);
  color: var(--ink);
}

.button-secondary {
  border: 1px solid rgba(29, 27, 24, 0.24);
  color: var(--ink);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.section {
  padding: clamp(74px, 10vw, 128px) clamp(20px, 7vw, 96px);
}

.split {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 760px;
}

.band {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.feature-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 84px;
  padding: 22px;
}

.audience-section h2 {
  max-width: 870px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--olive);
  padding: 12px 18px;
}

.method {
  background: #f5f0e8;
}

.pillar-list {
  display: grid;
  gap: 14px;
}

.pillar {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(104, 117, 101, 0.2);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 120px 1fr;
  padding: 18px;
}

.pillar span {
  color: var(--olive);
  font-weight: 800;
}

.pillar p {
  font-size: 0.98rem;
}

.shoot {
  align-items: center;
  background: var(--olive);
  color: var(--white);
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: 1fr minmax(280px, 420px);
}

.shoot p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.13rem;
  margin-top: 22px;
  max-width: 680px;
}

.shoot .button-primary {
  background: var(--citron);
  color: var(--ink);
  margin-top: 34px;
}

.score-card {
  background: rgba(251, 250, 246, 0.97);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 28px;
}

.score-top,
.score-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.score-top {
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  padding-bottom: 16px;
}

.score-top strong {
  font-size: 2.4rem;
  font-weight: 700;
}

.score-row {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  gap: 16px;
  padding: 11px 0;
}

.score-row:last-child {
  border-bottom: 0;
}

.score-row b {
  color: var(--ink);
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 56px);
}

.footer span {
  font-weight: 700;
}

.form-page,
.thank-you,
.admin-page {
  padding: 72px clamp(20px, 7vw, 96px) 96px;
}

.form-hero {
  max-width: 780px;
  padding: 38px 0 42px;
}

.form-hero h1,
.thank-you h1,
.admin-page h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.form-hero p,
.thank-you p {
  font-size: 1.15rem;
  margin-top: 20px;
}

.review-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  max-width: 1040px;
  padding: clamp(22px, 4vw, 44px);
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 13px 14px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(104, 117, 101, 0.16);
}

.field-error {
  color: #9d3f2f;
  font-size: 0.82rem;
}

.form-error-summary {
  background: #fff1eb;
  border: 1px solid rgba(157, 63, 47, 0.24);
  border-radius: 8px;
  color: #9d3f2f;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.form-error-summary span {
  color: #7a5c54;
  font-size: 0.92rem;
}

.submit-button {
  border: 0;
  cursor: pointer;
  justify-self: start;
}

.thank-you {
  align-items: center;
  display: grid;
  min-height: 72vh;
}

.thank-you section {
  max-width: 840px;
}

.admin-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-note {
  background: #f5f0e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 22px;
  padding: 18px;
}

.table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 960px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

td span {
  color: var(--muted);
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.status {
  background: #edf1e8;
  border-radius: 999px;
  color: var(--olive);
  display: inline-block;
  font-weight: 800;
  padding: 6px 10px;
}

.empty {
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 54px;
  }

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

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

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

  .footer,
  .admin-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.98rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-inline: 16px;
  }

  .review-form {
    padding: 20px;
  }
}
