* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f7f0;
  --ink: #0e1911;
  --muted: #5c675f;
  --green: #23551f;
  --green-bright: #8cc63f;
  --green-dark: #07150b;
  --green-deep: #102914;
  --card: #ffffff;
  --line: rgba(14, 25, 17, 0.12);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 145px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 138px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: linear-gradient(135deg, #07150b 0%, #102914 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

.brand img {
  width: 158px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: #f7f7f0;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
}

.nav-cta,
.button.primary {
  color: #07150b;
  background: var(--green-bright);
  box-shadow: 0 14px 30px rgba(140, 198, 63, 0.24);
}

.button.secondary {
  color: var(--green);
  border: 1px solid var(--green);
  background: transparent;
}

.hero {
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 70px 5vw;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 13px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.lead {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
  max-width: 720px;
}

.narrow {
  max-width: 720px;
}

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

.micro {
  color: var(--muted);
  margin-top: 20px;
}

.hero-card {
  border-radius: 32px;
  background: #030603;
  padding: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.section,
.split,
.quote {
  padding: 64px 5vw;
  border-top: 1px solid var(--line);
}

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

.cards article,
.quote {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
}

.cards p,
.quote p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.split > div:first-child {
  max-width: 650px;
}

.why-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.why-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.why-list p + p {
  margin-top: 10px;
}

.split p {
  margin: 0 0 16px;
  line-height: 1.55;
}

.muted {
  background: #eaf2df;
}

.quote {
  margin: 56px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

footer {
  padding: 42px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #f7f7f0;
  background: linear-gradient(135deg, #07150b 0%, #102914 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

footer img {
  width: 158px;
  height: auto;
}

footer p {
  color: rgba(247, 247, 240, 0.86);
}

/* Tighter story / owner sections */
.owner-section,
.about-owner,
.story-section {
  padding: 64px 5vw;
}

.owner-copy p,
.about-owner p,
.story-section p {
  margin: 0 0 16px;
  line-height: 1.55;
}


.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border-radius: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.contact-card span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 12px;
}

.contact-card strong {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.contact-card:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 950px) {
  .site-header {
    min-height: auto;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
  }

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

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

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

@media (max-width: 620px) {
  section {
    scroll-margin-top: 180px;
  }

  .site-header {
    padding: 14px 5vw;
  }

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

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 18px;
  }

  .section,
  .split,
  .quote {
    padding: 52px 5vw;
  }

  .hero {
    padding: 52px 5vw;
  }

  .hero-card {
    padding: 16px;
  }

  .brand img {
    width: 132px;
  }

  footer img {
    width: 132px;
  }
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(14, 25, 17, 0.14);
  background: #102914;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.work-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}

.work-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.work-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.03);
}

@media (max-width: 950px) {
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .work-card.featured {
    grid-column: span 2;
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.featured {
    grid-column: span 1;
    min-height: 300px;
  }
}

.quote-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Compliance and legal pages */
.sms-disclosure {
  margin-top: 16px;
  max-width: 860px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.sms-disclosure a,
footer a,
.legal-page a {
  color: inherit;
  font-weight: 800;
}

.sms-disclosure.small {
  margin-top: 12px;
  font-size: 13px;
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.legal-page h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
}
