:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --paper: #f7f4ef;
  --panel: #ffffff;
  --line: #d9dee7;
  --navy: #08223c;
  --gold: #b98533;
  --blue: #1367c7;
  --teal: #0d8f8a;
  --shadow: 0 18px 50px rgba(12, 24, 40, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 239, 0.92);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.brand-sub {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--navy);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(34px, 6vw, 80px) clamp(18px, 4vw, 56px) clamp(22px, 3vw, 42px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 5.7vw, 82px);
  line-height: 1;
}

.intro {
  max-width: 660px;
  margin: 22px 0 0;
  color: #344055;
  font-size: clamp(16px, 2vw, 20px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--navy);
  color: #fff;
}

.button.secondary {
  color: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-auto-rows: minmax(170px, 26vh);
  gap: 12px;
}

.hero-grid img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-grid img:first-child {
  grid-row: span 2;
}

.hero-grid img:last-child {
  object-position: center top;
}

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

.proof-strip div {
  min-height: 132px;
  padding: clamp(18px, 2.5vw, 30px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 920px;
  padding: clamp(56px, 7vw, 92px) clamp(18px, 4vw, 56px) 24px;
}

.section-heading.compact {
  padding: 0;
}

.section-heading h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
}

.case-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(20px, 4vw, 52px);
  align-items: center;
  padding: clamp(22px, 4vw, 54px) clamp(18px, 4vw, 56px);
}

.case-band.reverse {
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
}

.case-band.reverse .band-copy {
  order: 2;
}

.band-copy {
  max-width: 560px;
}

.band-copy h3,
.case-card h3,
.seasonal-card h3,
.process-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.12;
}

.band-copy p,
.case-card p,
.seasonal-card p,
.process-grid p,
.contact-section p {
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.tags li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: #344055;
  font-size: 13px;
  font-weight: 700;
}

.case-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-image img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-image.wide img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.case-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 34px);
  padding: 10px clamp(18px, 4vw, 56px) clamp(38px, 6vw, 78px);
}

.case-card,
.seasonal-card,
.process-grid div,
.contact-card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(12, 24, 40, 0.08);
}

.case-card {
  overflow: hidden;
}

.case-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.case-card div {
  padding: clamp(18px, 2.6vw, 28px);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 12px clamp(18px, 4vw, 56px) clamp(54px, 7vw, 88px);
}

.seasonal-card {
  overflow: hidden;
}

.seasonal-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.seasonal-card h3,
.seasonal-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.seasonal-card h3 {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 24px);
}

.seasonal-card p {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.water-pair {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 14px;
}

.water-pair .case-image:last-child img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
  background: var(--navy);
  color: #fff;
}

.process-section .eyebrow {
  color: #d9a65d;
}

.process-section h2,
.process-grid h3 {
  color: #fff;
}

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

.process-grid div {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.process-grid span {
  display: block;
  margin-bottom: 24px;
  color: #d9a65d;
  font-weight: 900;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 102px) clamp(18px, 4vw, 56px);
  background: #fff;
}

.contact-section > div:first-child {
  max-width: 760px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.contact-card a,
.contact-card span {
  display: block;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.contact-card span {
  color: var(--muted);
  font-weight: 700;
}

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

  nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero,
  .case-band,
  .case-band.reverse,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .case-band.reverse .band-copy {
    order: initial;
  }

  .proof-strip,
  .case-grid-two,
  .seasonal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  nav {
    gap: 10px 16px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(130px, 34vw);
  }

  .hero-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .proof-strip,
  .case-grid-two,
  .seasonal-grid,
  .process-grid,
  .water-pair {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }
}
