@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap");

:root {
  --ink: #171b1a;
  --green: #17352d;
  --green-light: #49675e;
  --brass: #b08c45;
  --paper: #f1f0ec;
  --white: #fff;
  --line: #cbc7bd;
  --muted: #58615d;
  --display-font: "Playfair Display", "Bodoni 72", Didot, "Baskerville", Georgia, serif;
  --body-font: "Aptos", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body-font);
  line-height: 1.6;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.protected-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(20px, 5vw, 72px);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.static-header {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}

nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.shop-link {
  border: 1px solid rgba(255,255,255,.75);
  padding: 8px 16px;
}

.hero {
  position: relative;
  min-height: min(82vh, 790px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 8px solid var(--green);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  opacity: .98;
  filter: saturate(.82) contrast(.96) brightness(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 19, 17, .72) 0%, rgba(13, 19, 17, .44) 46%, rgba(13, 19, 17, .04) 100%),
    linear-gradient(0deg, rgba(13, 19, 17, .16), rgba(13, 19, 17, .04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(830px, 92%);
  padding: 150px clamp(20px, 8vw, 120px) 115px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ddc789;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.dark { color: #826729; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 82px);
  text-wrap: balance;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .34);
}

h2 { font-size: clamp(34px, 4.6vw, 58px); }
h3 { font-size: 25px; }

.hero-copy {
  max-width: 690px;
  margin: 26px 0 32px;
  color: #e3e6e4;
  font-size: clamp(18px, 2vw, 24px);
}

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

.hero-signature {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 5vw, 72px);
  bottom: 28px;
  margin: 0;
  color: #c8ceca;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-signature span {
  margin-left: 18px;
  color: #ddc789;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.button-primary {
  color: #111513;
  background: var(--brass);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}

.button-light {
  color: var(--green);
  background: var(--white);
}

.founder {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px clamp(20px, 5vw, 72px);
}

.founder-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 50px 18px 0;
  border-right: 1px solid var(--line);
}

.founder-mark img {
  width: min(310px, 100%);
  border: 1px solid var(--line);
}

.founder-copy {
  align-self: center;
  max-width: 760px;
  padding-left: clamp(38px, 7vw, 100px);
}

.founder-copy h2 { margin-bottom: 26px; }

.founder-copy p,
.direction p {
  color: var(--muted);
  font-size: 17px;
}

.partnership {
  padding: 88px clamp(20px, 7vw, 110px);
  color: var(--white);
  background: var(--green);
}

.section-heading {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto 60px;
}

.section-heading .eyebrow { align-self: start; }

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.25);
}

.partnership-grid article {
  min-width: 0;
  padding: 34px 38px 10px 0;
}

.partnership-grid article + article {
  padding-left: 38px;
  border-left: 1px solid rgba(255,255,255,.25);
}

.partnership-grid p { color: #d5dfda; }

.step {
  display: block;
  margin-bottom: 38px;
  color: #ddc789;
  font-size: 13px;
  font-weight: 800;
}

.direction {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px clamp(20px, 5vw, 72px);
}

.collections-note {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 76px clamp(20px, 7vw, 110px);
  color: var(--white);
  background: var(--ink);
}

.collections-note h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 50px);
}

.collections-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--brass);
}

.text-link.light { color: var(--white); }

.page-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 90px 24px 58px;
  text-align: center;
}

.page-intro h1 {
  font-size: clamp(44px, 6vw, 74px);
}

.page-intro > p:last-child {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.collection-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.collection-card img {
  width: 170px;
  height: 170px;
  object-fit: cover;
}

.collection-card h2 {
  font-size: 27px;
}

.collection-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.collections-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 62px 24px;
  color: var(--white);
  background: var(--green);
}

.collections-shop h2 { font-size: clamp(28px, 4vw, 44px); }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 46px clamp(20px, 5vw, 72px);
  color: #d7dfdb;
  background: #0e211c;
}

footer strong {
  color: var(--white);
  font-family: var(--display-font);
  font-size: 20px;
}

footer p { margin: 5px 0 0; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
    padding: 12px 16px;
  }

  .brand span { display: none; }
  .brand img { width: 42px; height: 42px; }
  nav { gap: 13px; }
  nav a { font-size: 12px; }
  .shop-link { padding: 6px 10px; }

  .hero { min-height: 690px; }
  .hero-bg {
    object-position: 58% center;
    opacity: .88;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(13, 19, 17, .74), rgba(13, 19, 17, .46)),
      linear-gradient(0deg, rgba(13, 19, 17, .18), rgba(13, 19, 17, .04));
  }

  .hero-content { width: 100%; padding: 130px 20px 118px; }
  .hero-signature { left: 20px; right: auto; }

  .founder,
  .section-heading,
  .direction {
    grid-template-columns: 1fr;
  }

  .founder { gap: 40px; padding-top: 70px; }
  .founder-mark { padding: 0; border-right: 0; }
  .founder-mark img { width: min(280px, 75vw); }
  .founder-copy { padding-left: 0; }

  .section-heading { gap: 18px; }
  .partnership-grid { grid-template-columns: 1fr; }
  .partnership-grid article { padding: 28px 0; }
  .partnership-grid article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.25);
    border-left: 0;
  }
  .step { margin-bottom: 12px; }

  .collections-note,
  .collections-actions,
  .collections-shop {
    align-items: flex-start;
    flex-direction: column;
  }

  .collections-actions { gap: 18px; }
  .collection-list { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  nav a:first-child { display: none; }
  h1 {
    font-size: 42px;
    line-height: 1.14;
  }

  .collection-card {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 16px;
  }

  .collection-card img {
    width: 100px;
    height: 100px;
  }

  .collection-card h2 { font-size: 22px; }
  .collection-card p { font-size: 14px; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
