/* Lawicki Ventures LLC — Version 1 */

:root {
  --navy: #0d2f67;
  --navy-dark: #08234e;
  --text: #10131a;
  --muted: #2f3948;
  --line: #d9dee7;
  --soft: #f6f8fb;
  --white: #ffffff;

  /* Five-size typography system */
  --fs-hero: clamp(2.6rem, 4.6vw, 4.45rem);
  --fs-section: clamp(1.7rem, 2.4vw, 2.2rem);
  --fs-subhead: clamp(1.25rem, 1.6vw, 1.5rem);
  --fs-body: clamp(1rem, 1.05vw, 1.12rem);
  --fs-utility: 0.9rem;

  --max-hero: 1120px;
  --max-wide: 860px;
  --max-ventures: 900px;
  --max-about: 760px;
  --max-contact: 420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-name {
  font-size: var(--fs-subhead);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: 2.2rem;
  font-size: var(--fs-utility);
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

section {
  border-bottom: 1px solid #eceff3;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: var(--soft);
}

.content {
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

.content-hero {
  max-width: var(--max-hero);
  padding-top: 3.6rem;
  padding-bottom: 3.6rem;
}

.content-wide {
  max-width: var(--max-wide);
  padding-top: 3.3rem;
  padding-bottom: 3.3rem;
}

.content-ventures {
  max-width: var(--max-ventures);
  padding-top: 3.8rem;
  padding-bottom: 3rem;
}

.content-about {
  max-width: var(--max-about);
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.content-contact {
  max-width: var(--max-contact);
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
}

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

h1 {
  margin-bottom: 0.45rem;
  font-size: var(--fs-hero);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.tagline {
  margin-bottom: 1.65rem;
  color: var(--navy);
  font-size: calc(var(--fs-subhead) * 0.92);
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-description {
  max-width: 760px;
  margin: 0 auto;
  font-size: calc(var(--fs-body) * 1.28);
  line-height: 1.55;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: var(--fs-section);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.8rem;
  color: var(--navy);
  font-size: var(--fs-subhead);
  line-height: 1.15;
  font-weight: 800;
}

.body-copy,
.venture-card p,
.content-contact p {
  font-size: var(--fs-body);
}

.body-copy p {
  margin-bottom: 1.45rem;
}

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

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

.venture-card {
  border: 1px solid var(--line);
  padding: 2rem 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.venture-card p {
  max-width: 330px;
  margin-bottom: 1rem;
}

.button {
  font-size: var(--fs-utility);
  font-weight: 800;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.72rem 1.2rem;
}

.venture-card .button {
  margin-top: auto;
  width: 100%;
}

.button-outline {
  border: 1px solid var(--navy);
  color: var(--white);
  background: var(--navy);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
}

.button-solid {
  background: var(--navy);
  color: var(--white);
  min-width: 170px;
}

.button-solid:hover,
.button-solid:focus-visible {
  background: var(--navy-dark);
}

.more-ventures {
  margin: 1.25rem 0 0;
  font-size: calc(var(--fs-body) * 1.12);
  font-weight: 800;
}

.contact-section {
  border-bottom: 0;
}

.content-contact h2 {
  margin-bottom: 0.4rem;
}

.content-contact p {
  margin-bottom: 0.1rem;
}

.contact-company {
  font-weight: 800;
}

.content-contact .button {
  margin-top: 0.7rem;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 1rem 1.5rem 1.1rem;
  font-size: var(--fs-utility);
}

.site-footer p {
  margin: 0.15rem 0;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.site-footer span {
  display: inline-block;
  margin: 0 0.65rem;
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    gap: 0.85rem;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
  }

  .content-hero {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .hero-description {
    font-size: calc(var(--fs-body) * 1.2);
  }

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

@media (max-width: 460px) {
  .site-name {
    text-align: center;
  }

  .site-nav {
    font-size: 0.82rem;
  }

  .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .venture-card {
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}


@media (min-width: 900px) {
  h1,
  .tagline {
    white-space: nowrap;
  }
}
