:root {
  color-scheme: light;
  --bg: #f8f7f3;
  --ink: #151718;
  --muted: #5d6664;
  --line: #dcd8ce;
  --panel: #ffffff;
  --panel-soft: #efede6;
  --accent: #286258;
  --accent-strong: #193f39;
  --gold: #b9852d;
  --danger: #8e3b2f;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(21, 23, 24, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(248, 247, 243, 0) 280px),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration-color: rgba(40, 98, 88, 0.42);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--accent);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 216, 206, 0.78);
  background: rgba(248, 247, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: 180px;
  height: auto;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 23, 24, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--accent-strong);
  box-shadow: 0 8px 24px rgba(21, 23, 24, 0.06);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  border-radius: 8px;
  padding: 8px 11px;
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(40, 98, 88, 0.09);
  color: var(--accent-strong);
}

main {
  flex: 1;
}

.hero,
.page-hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: 56px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

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

h3 {
  font-size: 1.12rem;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  background: var(--accent-strong);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: #102b27;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(40, 98, 88, 0.32);
  background: #fff;
}

.studio-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.studio-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.studio-card dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-card dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.section {
  padding: 56px 0;
}

.section.alt {
  border-block: 1px solid var(--line);
  background: rgba(239, 237, 230, 0.6);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

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

.grid.single-product {
  grid-template-columns: minmax(0, 420px);
}

.product-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 12px 36px rgba(21, 23, 24, 0.05);
}

.product-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.product-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(40, 98, 88, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--accent-strong);
  background: rgba(40, 98, 88, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.product-card p,
.info-card p,
.body-copy p,
.body-copy li {
  color: var(--muted);
}

.product-card p {
  margin: 12px 0 22px;
}

.product-card a:last-child {
  margin-top: auto;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: 42px;
  align-items: start;
}

.fact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.callout {
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  background: #fff9eb;
  color: #4a3a1d;
}

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

.body-copy h2 {
  margin-top: 36px;
  font-size: 1.6rem;
}

.body-copy ul {
  padding-left: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: #f1efe8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .brand-logo {
    width: 148px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero,
  .page-hero {
    padding: 56px 0 42px;
  }

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

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

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
