@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Italiana&display=swap');

:root {
  --sp-green: #175747;
  --sp-green-deep: #0d2f26;
  --sp-paper: #faf8f3;
  --sp-cream: #f1ede4;
  --sp-ink: #151815;
  --sp-muted: #626760;
  --sp-line: rgba(23, 87, 71, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.static-page {
  margin: 0;
  background: var(--sp-paper);
  color: var(--sp-ink);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.static-page a { color: inherit; text-decoration: none; }
body.static-page img { display: block; max-width: 100%; }
.sp-shell { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }

.sp-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  display: flex;
  align-items: center;
  background: rgba(13, 47, 38, .97);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.sp-nav__inner { display: flex; align-items: center; gap: 28px; justify-content: space-between; }
.sp-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sp-brand img { width: 92px; height: auto; }
.sp-nav__links { display: flex; align-items: center; justify-content: flex-end; gap: 22px; flex-wrap: wrap; }
.sp-nav__links a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  padding: 8px 0;
  transition: color .2s ease;
}
.sp-nav__links a:hover,
.sp-nav__links a[aria-current='page'] { color: #fff; }
.sp-nav__home {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 8px 13px !important;
}

.sp-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  background: var(--sp-green-deep);
  color: #fff;
  overflow: hidden;
}
.sp-hero__copy { align-self: center; padding: 92px max(28px, calc((100vw - 1180px)/2)); padding-right: 70px; }
.sp-kicker {
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.66);
}
.sp-hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.1vw, 104px);
  line-height: .92;
  letter-spacing: -.055em;
  font-weight: 400;
}
.sp-hero h1 em,
.sp-section h2 em { font-family: 'Italiana', serif; font-weight: 400; }
.sp-hero__lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 17px;
  line-height: 1.75;
}
.sp-hero__media { position: relative; min-height: 610px; background: #234c3c; }
.sp-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.sp-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,47,38,.28), transparent 45%);
  pointer-events: none;
}

.sp-section { padding: 112px 0; }
.sp-section--cream { background: var(--sp-cream); }
.sp-section--green { background: var(--sp-green); color: #fff; }
.sp-section__head { max-width: 820px; margin-bottom: 54px; }
.sp-section__eyebrow {
  margin: 0 0 18px;
  color: var(--sp-green);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
}
.sp-section--green .sp-section__eyebrow { color: rgba(255,255,255,.64); }
.sp-section h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 400;
}
.sp-section__intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--sp-muted);
  font-size: 17px;
  line-height: 1.75;
}
.sp-section--green .sp-section__intro { color: rgba(255,255,255,.7); }

.sp-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.sp-card {
  padding: 32px;
  border: 1px solid var(--sp-line);
  background: rgba(255,255,255,.58);
  min-height: 220px;
}
.sp-card__index { display: block; font-size: 11px; letter-spacing: .18em; color: var(--sp-green); margin-bottom: 32px; }
.sp-card h3 { margin: 0 0 14px; font-size: 28px; font-weight: 500; letter-spacing: -.025em; }
.sp-card p { margin: 0; color: var(--sp-muted); line-height: 1.7; }
.sp-section--green .sp-card { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.045); }
.sp-section--green .sp-card__index { color: rgba(255,255,255,.6); }
.sp-section--green .sp-card p { color: rgba(255,255,255,.68); }

.sp-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.sp-work-card { background: #fff; border: 1px solid var(--sp-line); overflow: hidden; }
.sp-work-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sp-work-card__copy { padding: 22px; }
.sp-work-card small { text-transform: uppercase; letter-spacing: .15em; color: var(--sp-green); font-size: 10px; }
.sp-work-card h3 { margin: 8px 0 0; font-size: 23px; font-weight: 500; }

.sp-cta-row { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; }
.sp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--sp-green);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
}
.sp-button--ghost { background: transparent; color: var(--sp-green) !important; border: 1px solid var(--sp-line); }
.sp-section--green .sp-button { background: #fff; color: var(--sp-green-deep) !important; }
.sp-section--green .sp-button--ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.24); }

.sp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.sp-contact-card { border: 1px solid rgba(255,255,255,.18); padding: 32px; min-height: 320px; }
.sp-contact-card small { color: rgba(255,255,255,.56); text-transform: uppercase; letter-spacing: .16em; }
.sp-contact-card h3 { margin: 30px 0 20px; font-family: 'Italiana', serif; font-size: 38px; font-weight: 400; }
.sp-contact-card p { color: rgba(255,255,255,.7); line-height: 1.75; }
.sp-contact-card a { display: inline-flex; margin-top: 14px; border-bottom: 1px solid rgba(255,255,255,.34); padding-bottom: 5px; }

.sp-catalogue-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 2px;
  background: #1a332a;
}
.sp-catalogue-stage img { width: 100%; height: 520px; object-fit: cover; opacity: .7; }
.sp-catalogue-stage__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 36px; background: linear-gradient(180deg, transparent 35%, rgba(7,28,22,.88)); color: #fff; }
.sp-catalogue-stage__overlay strong { display: block; font-size: clamp(30px, 4vw, 55px); font-weight: 400; letter-spacing: -.035em; }
.sp-catalogue-stage__overlay span { display: block; margin-top: 10px; color: rgba(255,255,255,.68); }

.sp-footer { padding: 42px 0; background: #0a241b; color: rgba(255,255,255,.6); }
.sp-footer__inner { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.sp-footer a { color: #fff !important; }

@media (max-width: 900px) {
  .sp-shell { width: min(100% - 34px, 1180px); }
  .sp-nav { position: relative; }
  .sp-nav__inner { padding: 14px 0; align-items: flex-start; }
  .sp-nav__links { gap: 11px 16px; }
  .sp-nav__links a { font-size: 12px; }
  .sp-hero { grid-template-columns: 1fr; }
  .sp-hero__copy { padding: 72px 22px 58px; }
  .sp-hero__media { min-height: 360px; order: -1; }
  .sp-section { padding: 80px 0; }
  .sp-cards, .sp-contact-grid { grid-template-columns: 1fr; }
  .sp-grid-3 { grid-template-columns: 1fr 1fr; }
  .sp-footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .sp-nav__inner { display: block; }
  .sp-brand { margin-bottom: 12px; }
  .sp-nav__links { justify-content: flex-start; }
  .sp-nav__home { display: none; }
  .sp-hero__media { min-height: 290px; }
  .sp-hero h1 { font-size: clamp(52px, 16vw, 76px); }
  .sp-section h2 { font-size: clamp(40px, 12vw, 60px); }
  .sp-grid-3 { grid-template-columns: 1fr; }
  .sp-card, .sp-contact-card { padding: 26px; }
}
