* {
  box-sizing: border-box;
}

:root {
  --yellow: #ffc800;
  --yellow-dark: #e3ad00;
  --black: #050505;
  --soft-black: #111111;
  --white: #ffffff;
  --cream: #fff9df;
  --text: #171717;
  --muted: #5f5f5f;
  --border: #f1df8a;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 7%;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-name {
  color: var(--yellow);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.nav-menu a:hover {
  color: var(--yellow);
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding: 70px 7%;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 200, 0, 0.28), transparent 30%),
    linear-gradient(180deg, #fff7c5, #fffdf1);
}

.eyebrow {
  color: #8a6b00;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-section h2,
.cta h2,
.page h1 {
  margin: 0;
  color: var(--black);
  letter-spacing: -1px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.hero p,
.section p,
.split-section p,
.page p,
.card p,
.product-card p,
.contact-box p {
  font-size: 18px;
  line-height: 1.7;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: #333333;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 900;
}

.primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(255, 200, 0, 0.35);
}

.primary:hover {
  background: var(--yellow-dark);
}

.secondary {
  background: var(--black);
  color: var(--white);
}

.hero-logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.hero-logo-card img {
  width: min(420px, 100%);
  height: auto;
  display: block;
}

.section,
.split-section,
.page,
.cta {
  padding: 70px 7%;
}

.section h2,
.split-section h2,
.cta h2,
.page h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.cards,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.card,
.product-card,
.contact-box,
.contact-form {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.card h3,
.product-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  background: var(--black);
  color: var(--white);
}

.split-section h2 {
  color: var(--yellow);
}

.split-section .eyebrow {
  color: var(--yellow);
}

.split-section p {
  color: #eeeeee;
}

.cta {
  text-align: center;
  background: #fff4b0;
}

.cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page {
  min-height: 70vh;
}

.narrow {
  max-width: 950px;
  margin: 0 auto;
}

.page-intro {
  max-width: 800px;
}

.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 26px;
  margin-bottom: 16px;
}

.text-link {
  color: #8a6b00;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dedede;
  border-radius: 14px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

footer {
  background: var(--black);
  color: #dddddd;
  text-align: center;
  padding: 24px;
  border-top: 3px solid var(--yellow);
}

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

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .hero-logo-card {
    padding: 24px;
  }
}

.simple-contact-section {
  padding: 60px 7%;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.simple-contact-section h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(32px, 4vw, 46px);
}

.simple-contact-section p {
  font-size: 18px;
  line-height: 1.7;
}

.email-link,
.contact-box a {
  color: var(--yellow);
  font-weight: 900;
  text-decoration: none;
}

.email-link:hover,
.contact-box a:hover {
  text-decoration: underline;
}

.normal-link {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

.normal-link:hover {
  color: var(--black);
}

.contact-box a.normal-link {
  color: inherit;
  font-weight: 600;
}

.status-pill {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--black);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.collaboration-note {
  margin-top: 44px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.collaboration-note h2 {
  margin-top: 0;
  font-size: 32px;
}
