:root {
  --ink: #172033;
  --muted: #586270;
  --blue: #002147;
  --blue-2: #173d6f;
  --green: #56642b;
  --gold: #b1842c;
  --paper: #fbf9f6;
  --white: #ffffff;
  --line: #dde1e6;
  --soft: #f1eee9;
  --soft-blue: #e7edf6;
  --shadow: 0 22px 60px rgba(0, 33, 71, 0.10);
  --max: 1120px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--blue-2);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: var(--blue);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 249, 246, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 45px;
  object-fit: contain;
}

.brand span {
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.95rem;
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

main {
  min-height: 60vh;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.8rem 1.25rem;
}

.section.compact {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.6rem 1.25rem 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.h-like {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  color: var(--blue);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
  font-size: clamp(1.15rem, 1.4vw, 1.28rem);
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #2a3445;
  max-width: 740px;
}

.hero .lead {
  margin-top: 1.35rem;
}

.body-copy {
  max-width: 740px;
  color: #2f3948;
}

.body-copy p {
  margin: 0 0 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  color: var(--white);
  background: #113c70;
}

.button.secondary {
  color: var(--blue);
  background: transparent;
}

.button.secondary:hover {
  color: var(--blue);
  background: var(--soft-blue);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.8rem;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 6px);
}

.caption {
  margin: 0.75rem 0 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.2rem;
}

.section-head p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p {
  margin: 0;
  color: #344154;
}

.card .meta,
.meta {
  margin-bottom: 0.6rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.panel {
  background: var(--blue);
  color: var(--white);
  border-radius: calc(var(--radius) + 10px);
  padding: 2rem;
}

.panel h2,
.panel h3,
.panel .eyebrow {
  color: var(--white);
}

.panel p,
.panel li {
  color: #e6eef8;
}

.panel a {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.supplier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.supplier-card img {
  max-width: 230px;
  margin-bottom: 1rem;
}

.info-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}

.info-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.info-list dd {
  margin: 0;
  font-weight: 650;
  color: var(--ink);
  word-break: break-word;
}

.work-list {
  display: grid;
  gap: 1rem;
}

.work-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.work-card h2,
.work-card h3 {
  margin-bottom: 0.65rem;
}

.work-card p {
  margin: 0 0 0.85rem;
  color: #344154;
}

.work-card p:last-child {
  margin-bottom: 0;
}

.note {
  border-left: 4px solid var(--gold);
  background: #fff8e9;
  padding: 1rem 1.1rem;
  border-radius: 0 12px 12px 0;
  color: #3c3424;
}

.quote {
  border-left: 4px solid var(--green);
  padding-left: 1rem;
  margin: 1.2rem 0;
  color: #2e3d19;
  font-size: 1.05rem;
}

.profile {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.profile img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.check-list,
.plain-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.check-list li,
.plain-list li {
  margin-bottom: 0.45rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
}

.site-footer {
  background: #f0ede7;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.footer-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  width: 58px;
  margin-bottom: 0.7rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.kicker-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  background: var(--white);
  font-size: 0.88rem;
  color: #344154;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .profile,
  .contact-band,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .hero-card {
    max-width: 520px;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 0.9rem;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}

@media (max-width: 700px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.7rem 0.9rem;
  }

  .section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .panel,
  .card,
  .work-card,
  .supplier-card,
  .contact-card {
    padding: 1.1rem;
  }
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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