:root {
  --bg: #e7e1c9;
  --paper: #efe9d4;
  --text: #0c1710;
  --muted: rgba(12, 23, 16, 0.70);
  --soft: rgba(12, 23, 16, 0.48);
  --quiet: rgba(12, 23, 16, 0.28);
  --dark: #06140e;
  --forest: #102018;
  --moss: #637553;
  --line: rgba(12, 23, 16, 0.16);

  --pad: clamp(24px, 4vw, 72px);
  --wide: 1120px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 117, 83, 0.13), transparent 32%),
    radial-gradient(circle at 88% 72%, rgba(38, 74, 54, 0.10), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family:
    "General Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: radial-gradient(rgba(12, 23, 16, 0.18) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
}

a {
  color: inherit;
}

.home-link {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 50;
  color: rgba(239, 233, 212, 0.78);
  background: rgba(6, 20, 14, 0.28);
  border: 1px solid rgba(239, 233, 212, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 12px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 clamp(20px, 2.6vw, 36px);
  color: currentColor;
  opacity: 0.56;
  font-size: clamp(12px, 0.75vw, 15px);
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero,
.final {
  min-height: 112dvh;
  position: relative;
  overflow: hidden;
  color: #f2edd6;
}

.hero {
  display: flex;
  align-items: center;
  padding: 120px var(--pad);
}

.hero-photo,
.final-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-photo {
  background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=2200&q=88");
}

.hero-shade,
.final-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 20, 14, 0.90), rgba(6, 20, 14, 0.48), rgba(6, 20, 14, 0.76)),
    radial-gradient(circle at 70% 18%, rgba(255,255,255,0.08), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  margin-left: max(0px, calc((100vw - var(--wide)) / 2));
}

.hero-content h1 {
  margin-bottom: clamp(28px, 3vw, 46px);
  font-size: clamp(68px, 8vw, 164px);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-content p:not(.eyebrow),
.final-content p {
  width: min(100%, 660px);
  margin: 0;
  color: rgba(242, 237, 214, 0.80);
  font-size: clamp(21px, 1.45vw, 31px);
  line-height: 1.56;
  letter-spacing: -0.034em;
  font-weight: 400;
}

.actions,
.final-content a {
  width: min(100%, 370px);
  margin-top: clamp(34px, 4vw, 54px);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.actions a,
.project-links a,
.final-content a {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 430;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.actions a:first-child,
.final-content a {
  color: var(--dark);
  background: #f2edd6;
  border: 1px solid #f2edd6;
}

.actions a:last-child {
  color: rgba(242, 237, 214, 0.86);
  background: rgba(242, 237, 214, 0.06);
  border: 1px solid rgba(242, 237, 214, 0.26);
}

.actions a:hover,
.project-links a:hover,
.final-content a:hover {
  transform: translateY(-1px);
}

.breath {
  min-height: 90dvh;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.breath p {
  width: min(100%, var(--narrow));
  margin: 0;
  color: var(--muted);
  font-size: clamp(24px, 1.55vw, 34px);
  line-height: 1.72;
  letter-spacing: -0.032em;
  font-weight: 400;
}

.chapter {
  min-height: 105dvh;
  padding: clamp(90px, 10vw, 150px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(320px, 0.93fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  width: min(100%, calc(var(--wide) + var(--pad) * 2));
  margin: 0 auto;
}

.chapter-right {
  grid-template-columns: minmax(320px, 0.93fr) minmax(0, 1.07fr);
}

.chapter-image {
  min-height: 70dvh;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 90px rgba(12, 23, 16, 0.16);
  overflow: hidden;
}

.image-courtyard {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.12)),
    url("https://images.unsplash.com/photo-1484101403633-562f891dc89a?auto=format&fit=crop&w=1600&q=88");
}

.image-garden {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.12)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=88");
}

.chapter-copy h2,
.offer-head h2,
.materials-content h2,
.process h2,
.origin h2,
.final-content h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.chapter-copy p:not(.eyebrow),
.materials-content p,
.origin p {
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: var(--muted);
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.55;
  letter-spacing: -0.034em;
}

.wide-image {
  min-height: 110dvh;
  position: relative;
  overflow: hidden;
  color: #f2edd6;
}

.wide-photo {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=2200&q=88");
  background-size: cover;
  background-position: center;
  filter: brightness(0.58);
}

.wide-text {
  position: absolute;
  left: var(--pad);
  bottom: clamp(54px, 8vw, 110px);
  width: min(100% - 48px, 920px);
}

.wide-text p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.8vw, 126px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.wide-text p + p {
  margin-top: 14px;
  opacity: 0.76;
}

.offer,
.process,
.origin {
  min-height: 105dvh;
  padding: clamp(100px, 12vw, 180px) var(--pad);
}

.offer-head,
.process {
  text-align: center;
}

.offer-head {
  width: min(100%, 880px);
  margin: 0 auto clamp(54px, 6vw, 90px);
}

.offer-list {
  width: min(100%, var(--wide));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.offer-list article {
  min-height: 132px;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 72px 0.86fr 1.14fr;
  gap: 28px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.offer-list span,
.process-grid span {
  color: var(--quiet);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 520;
}

.offer-list h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(28px, 2.35vw, 52px);
  line-height: 0.99;
  letter-spacing: -0.052em;
  font-weight: 540;
}

.offer-list p,
.process-grid p,
.material-lines p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1vw, 21px);
  line-height: 1.52;
  letter-spacing: -0.025em;
  font-weight: 400;
}

.materials {
  min-height: 115dvh;
  padding: clamp(100px, 12vw, 180px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  width: min(100%, calc(var(--wide) + var(--pad) * 2));
  margin: 0 auto;
}

.materials-photo {
  min-height: 74dvh;
  border-radius: 28px;
  background-image: url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1500&q=88");
  background-size: cover;
  background-position: center;
  box-shadow: 0 34px 90px rgba(12, 23, 16, 0.16);
}

.material-lines {
  margin-top: clamp(30px, 4vw, 56px);
  display: grid;
  gap: 10px;
}

.material-lines p {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.material-lines span {
  display: inline-block;
  min-width: 82px;
  color: var(--text);
  font-weight: 560;
}

.process h2 {
  width: min(100%, 820px);
  margin: 0 auto clamp(54px, 6vw, 90px);
}

.process-grid {
  width: min(100%, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.process-grid article {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(239, 233, 212, 0.34);
}

.process-grid span {
  margin-bottom: auto;
}

.process-grid h3 {
  margin: 58px 0 18px;
  font-size: clamp(28px, 2.5vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 540;
}

.origin {
  text-align: center;
}

.origin > div {
  width: min(100%, 840px);
  margin: 0 auto;
}

.project-links {
  width: min(100%, 640px);
  margin: clamp(34px, 4vw, 54px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.project-links a {
  min-height: 46px;
  color: rgba(12, 23, 16, 0.76);
  background: rgba(12, 23, 16, 0.018);
  border: 1px solid rgba(12, 23, 16, 0.12);
  font-size: 17px;
}

.final {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--pad);
}

.final-photo {
  background-image: url("https://images.unsplash.com/photo-1493246507139-91e8fad9978e?auto=format&fit=crop&w=2200&q=88");
}

.final-content {
  position: relative;
  z-index: 2;
  width: min(100%, 860px);
  text-align: center;
}

.final-content h2 {
  margin-inline: auto;
}

.final-content p {
  margin: clamp(24px, 3vw, 38px) auto 0;
}

.final-content a {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1060px) {
  .chapter,
  .chapter-right,
  .materials {
    grid-template-columns: 1fr;
  }

  .chapter-copy,
  .materials-content {
    text-align: center;
    width: min(100%, 760px);
    margin: 0 auto;
  }

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

  .project-links {
    grid-template-columns: repeat(2, 1fr);
    width: min(100%, 420px);
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 26px;
  }

  .hero-content h1 {
    font-size: clamp(56px, 15vw, 92px);
  }

  .hero-content p:not(.eyebrow),
  .final-content p,
  .breath p,
  .chapter-copy p:not(.eyebrow),
  .materials-content p,
  .origin p {
    font-size: clamp(20px, 5.2vw, 27px);
    line-height: 1.5;
  }

  .chapter-image,
  .materials-photo {
    min-height: 56dvh;
  }

  .offer-list article {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .offer-list h3,
  .offer-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .project-links {
    grid-template-columns: 1fr;
    width: min(100%, 300px);
  }
}

@media (max-width: 430px) {
  :root {
    --pad: 22px;
  }

  .home-link {
    top: 18px;
    left: 18px;
    padding: 8px 9px;
    font-size: 11px;
  }

  .hero-content h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .actions,
  .final-content a {
    width: min(100%, 320px);
  }

  .actions a,
  .project-links a,
  .final-content a {
    min-height: 46px;
    font-size: 17px;
  }
}
