/* Wilde Bear Industries LLC — static landing page */

:root {
  --ink: #201c18;
  --ink-soft: #51483f;
  --cream: #f4efe6;
  --cream-deep: #e7ddcd;
  --paper: #fbf8f2;
  --wood: #7b5638;
  --wood-dark: #4e3423;
  --accent: #b67a42;
  --line: rgba(32, 28, 24, 0.14);
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(182, 122, 66, 0.10), transparent 30rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.brand-text {
  display: grid;
  line-height: 1.03;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
}

nav a { text-decoration: none; }

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-contact {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 36px auto 0;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(57, 42, 29, 0.08);
}

.hero-inner {
  padding: clamp(48px, 7vw, 92px);
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wood);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(32, 28, 24, 0.14);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(182, 122, 66, 0.12);
}

.hero-card {
  position: relative;
  min-height: 100%;
  padding: 56px 44px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), transparent 40%),
    linear-gradient(115deg, var(--wood-dark), var(--wood));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(
      8deg,
      transparent 0 28px,
      rgba(255,255,255,.09) 29px 30px,
      transparent 31px 54px
    );
}

.bear-badge {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 128px;
  height: 128px;
  color: var(--cream);
  opacity: .9;
}

.bear-badge svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.card-kicker, .hero-card h2, .material-lines {
  position: relative;
  z-index: 1;
}

.card-kicker {
  margin-bottom: 8px;
  opacity: 0.75;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 32px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
}

.material-lines {
  display: grid;
  gap: 9px;
}

.material-lines span {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.material-lines span:nth-child(2) { width: 92%; }
.material-lines span:nth-child(3) { width: 76%; }
.material-lines span:nth-child(4) { width: 88%; }
.material-lines span:nth-child(5) { width: 62%; }

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading h2, .about h2, .contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1;
}

.section-heading > p:last-child, .about-copy, .contact-card > p {
  color: var(--ink-soft);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  min-height: 310px;
  padding: 32px 30px 34px;
  border-right: 1px solid var(--line);
}

.capability:last-child { border-right: 0; }

.number {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
}

.capability h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.capability p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.about { padding-top: 28px; }

.about-panel {
  padding: clamp(38px, 6vw, 76px);
  border-radius: var(--radius);
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

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

.about-copy p:last-child { margin-bottom: 0; }

.contact { padding-top: 18px; }

.contact-card {
  padding: clamp(48px, 8vw, 90px);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.contact-card .eyebrow { color: #d2a36d; }

.contact-card > p {
  max-width: 660px;
  margin: 0 auto 28px;
  color: rgba(244, 239, 230, 0.74);
}

.contact-card .button.primary {
  background: var(--cream);
  color: var(--ink);
}

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 34px 0 50px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

footer div { display: grid; gap: 2px; }

footer strong { color: var(--ink); }

footer a {
  width: fit-content;
  text-underline-offset: 3px;
}

footer p {
  margin: 0;
  align-self: end;
}

@media (max-width: 900px) {
  nav a:not(.nav-contact) { display: none; }

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

  .hero-card { min-height: 390px; }

  .capability-grid { grid-template-columns: repeat(2, 1fr); }

  .capability:nth-child(2) { border-right: 0; }

  .capability:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .site-header { min-height: 76px; }

  .brand-text strong { font-size: 1.05rem; }

  .hero {
    width: min(calc(100% - 24px), var(--max));
    margin-top: 18px;
    border-radius: 22px;
  }

  .hero-inner { padding: 42px 26px 46px; }

  h1 { font-size: clamp(3rem, 16vw, 4.5rem); }

  .hero-card {
    min-height: 330px;
    padding: 38px 28px;
  }

  .bear-badge {
    top: 24px;
    right: 22px;
    width: 96px;
    height: 96px;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 82px 0;
  }

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

  .capability {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability:last-child { border-bottom: 0; }

  .number { margin-bottom: 30px; }

  footer {
    width: min(calc(100% - 28px), var(--max));
    flex-direction: column;
  }
}
