:root {
  --cream: #f8f3ef;
  --paper: #fffdf9;
  --ink: #261d24;
  --muted: #746a71;
  --line: #ddd2d4;
  --mauve: #8e5d7f;
  --mauve-deep: #633d59;
  --mauve-soft: #eee1ea;
  --sage: #758a72;
  --sage-deep: #47624e;
  --sage-soft: #e5ecdf;
  --gold: #c59d58;
  --gold-soft: #f4e6bf;
  --blue: #6e8399;
  --blue-soft: #e5ebf0;
  --shadow: 0 24px 70px rgba(57, 37, 51, .11);
  --shadow-soft: 0 14px 40px rgba(57, 37, 51, .07);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 0%, rgba(142, 93, 127, .13), transparent 31rem),
    radial-gradient(circle at 100% 14%, rgba(110, 131, 153, .12), transparent 29rem),
    var(--cream);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: white;
  background: var(--mauve);
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -60px;
  z-index: 100;
  padding: 11px 14px;
  color: white;
  border-radius: 10px;
  background: var(--mauve-deep);
  text-decoration: none;
  font-weight: 800;
  transition: top .18s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-shell {
  width: min(1320px, calc(100% - 34px));
  margin: 0 auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(99, 61, 89, .14);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 14px;
  background:
    linear-gradient(145deg, var(--mauve-deep), var(--blue));
  box-shadow: 0 10px 24px rgba(99, 61, 89, .18);
  font: 700 17px/1 var(--serif);
  letter-spacing: -.04em;
}

.brand-copy strong {
  display: block;
  font: 600 18px/1 var(--serif);
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 7px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  padding: 30px 0 25px;
  color: #443b42;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 9px;
  font-weight: 900;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--mauve);
  transition: right .18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  border: 1px solid rgba(99, 61, 89, .18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 17%, rgba(255,255,255,.16), transparent 15rem),
    linear-gradient(135deg, #58364f 0%, #76526c 46%, #6f8198 100%);
  box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.hero::before {
  width: 440px;
  height: 440px;
  right: -110px;
  top: -205px;
}

.hero::after {
  width: 265px;
  height: 265px;
  right: 225px;
  bottom: -190px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 62px 58px;
  color: white;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 9px;
  font-weight: 900;
  opacity: .78;
}

.hero h1 {
  max-width: 720px;
  margin: 15px 0 0;
  font: 500 clamp(52px, 7vw, 88px)/.96 var(--serif);
  letter-spacing: -.055em;
}

.hero-role {
  margin-top: 20px;
  color: #f4dfac;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 900;
}

.hero-intro {
  max-width: 650px;
  margin: 19px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 9px;
  font-weight: 950;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #4f391e;
  background: linear-gradient(135deg, #f2d99c, #e8bd69);
  box-shadow: 0 13px 28px rgba(57, 37, 51, .16);
}

.button-secondary {
  color: white;
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.10);
}

.button-dark {
  color: white;
  background: linear-gradient(135deg, var(--mauve-deep), var(--mauve));
}

.button-sage {
  color: white;
  background: linear-gradient(135deg, var(--sage-deep), #66836d);
}

.button-quiet {
  color: var(--mauve-deep);
  border-color: rgba(99,61,89,.16);
  background: var(--mauve-soft);
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-art {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 36px;
}

.orbit {
  position: relative;
  width: min(360px, 78%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.21);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255,255,255,.035),
    0 0 0 96px rgba(255,255,255,.017);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit::before {
  inset: 17%;
  border: 1px dashed rgba(255,255,255,.23);
}

.orbit::after {
  width: 9px;
  height: 9px;
  top: 7%;
  right: 25%;
  background: #efd594;
  box-shadow: 0 0 22px rgba(239,213,148,.85);
}

.hero-symbol {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 36px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 65px rgba(30,20,28,.18);
}

.hero-symbol svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 88px 0 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 25px;
}

.section-kicker {
  color: var(--mauve-deep);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 8px;
  font-weight: 950;
}

.section-head h2 {
  margin: 9px 0 0;
  font: 500 clamp(36px, 5vw, 53px)/1.02 var(--serif);
  letter-spacing: -.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  gap: 18px;
}

.about-story,
.principle-card,
.project-card,
.project-detail,
.notice-card {
  border: 1px solid var(--line);
  background: rgba(255,253,249,.94);
  box-shadow: var(--shadow-soft);
}

.about-story {
  min-height: 310px;
  padding: 38px;
  border-radius: 25px;
}

.about-story h3 {
  margin: 0;
  color: var(--mauve-deep);
  font: 500 29px/1.15 var(--serif);
}

.about-story p {
  margin: 18px 0 0;
  color: #5f555d;
  font-size: 14px;
  line-height: 1.82;
}

.principles {
  display: grid;
  gap: 12px;
}

.principle-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  border-radius: 18px;
}

.principle-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: var(--mauve-deep);
  border-radius: 15px;
  background: var(--mauve-soft);
}

.principle-card:nth-child(2) .principle-icon {
  color: var(--sage-deep);
  background: var(--sage-soft);
}

.principle-card:nth-child(3) .principle-icon {
  color: #5a6f84;
  background: var(--blue-soft);
}

.principle-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-card h3 {
  margin: 0;
  font: 500 17px/1.2 var(--serif);
}

.principle-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

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

.project-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 27px;
  text-decoration: none;
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(99,61,89,.28);
  box-shadow: 0 28px 72px rgba(57,37,51,.15);
}

.project-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8eee5;
}

.project-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.project-card:hover .project-art img {
  transform: scale(1.018);
}

.project-status {
  position: absolute;
  left: 18px;
  top: 18px;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--sage-deep);
  border-radius: 999px;
  background: rgba(236,244,229,.93);
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 7px;
  font-weight: 950;
  box-shadow: 0 8px 24px rgba(39,55,42,.10);
}

.project-status.building {
  color: #76571f;
  background: rgba(249,235,195,.94);
}

.project-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 29px 30px 30px;
}

.project-copy h3 {
  margin: 0;
  color: var(--sage-deep);
  font: 600 clamp(28px, 3.5vw, 39px)/1.05 var(--serif);
  letter-spacing: -.035em;
}

.project-card.carbon .project-copy h3 {
  color: var(--mauve-deep);
}

.project-copy > p {
  margin: 14px 0 0;
  color: #5e6660;
  font-size: 12px;
  line-height: 1.7;
}

.project-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(71,98,78,.14);
}

.project-feature {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #455c4c;
  text-align: center;
  font-size: 8px;
  font-weight: 850;
}

.feature-bubble {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--sage-deep);
  border-radius: 50%;
  background: var(--sage-soft);
}

.carbon .feature-bubble {
  color: var(--mauve-deep);
  background: var(--mauve-soft);
}

.feature-bubble svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-action {
  min-height: 49px;
  margin-top: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 17px;
  color: white;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sage-deep), #61806a);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 8px;
  font-weight: 950;
}

.carbon .project-action {
  color: #553c1e;
  background: linear-gradient(135deg, #f2d99e, #e5bd6d);
}

.project-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta {
  position: relative;
  overflow: hidden;
  margin-top: 88px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: white;
  border-radius: 27px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.14), transparent 18rem),
    linear-gradient(135deg, var(--mauve-deep), #6d6682 58%, var(--blue));
  box-shadow: var(--shadow);
}

.cta::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 270px;
  right: -120px;
  bottom: -170px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin: 0;
  font: 500 clamp(29px, 4vw, 43px)/1.1 var(--serif);
}

.cta p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1.7;
}

.cta .button {
  position: relative;
  z-index: 2;
}

.site-footer {
  margin-top: 70px;
  padding: 27px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  color: #887d84;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

.site-footer strong {
  color: #4f454d;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 54px;
  color: white;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.15), transparent 16rem),
    linear-gradient(135deg, #5b384f, #76546c 50%, #6d8096);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  max-width: 800px;
  margin: 12px 0 0;
  font: 500 clamp(43px, 6vw, 72px)/.98 var(--serif);
  letter-spacing: -.05em;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 7px;
  font-weight: 900;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.project-detail {
  overflow: hidden;
  margin-top: 25px;
  border-radius: 27px;
}

.detail-image {
  aspect-ratio: 16 / 7.1;
  overflow: hidden;
  background: #e9eee5;
}

.detail-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 34px;
  padding: 39px;
}

.detail-copy h2,
.detail-aside h2 {
  margin: 0;
  color: var(--mauve-deep);
  font: 500 28px/1.18 var(--serif);
}

.detail-copy p {
  margin: 17px 0 0;
  color: #5f565d;
  font-size: 13px;
  line-height: 1.82;
}

.detail-aside {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #faf6f4;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 19px 0 0;
}

.detail-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  color: #514850;
  font-size: 10px;
  line-height: 1.5;
}

.detail-item strong {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 7px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.notice-card {
  margin-top: 20px;
  padding: 25px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(244,230,191,.74), rgba(238,225,234,.72)),
    var(--paper);
}

.notice-card strong {
  color: #76571f;
  font: 600 19px/1.2 var(--serif);
}

.notice-card p {
  margin: 9px 0 0;
  color: #675d55;
  font-size: 11px;
  line-height: 1.65;
}

.cards-compact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 20px;
}

.compact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.compact-card h3 {
  margin: 0;
  color: var(--sage-deep);
  font: 500 19px/1.2 var(--serif);
}

.compact-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.not-found {
  min-height: 68vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font: 500 clamp(54px, 9vw, 100px)/.9 var(--serif);
  color: var(--mauve-deep);
}

.not-found p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

  .hero-copy {
    padding-bottom: 24px;
  }

  .hero-art {
    min-height: 290px;
    padding-top: 0;
  }

  .orbit {
    width: 230px;
  }

  .section-head,
  .about-grid,
  .detail-body {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 20px, 1320px);
  }

  .site-header {
    min-height: 70px;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    gap: 13px;
  }

  .site-nav a {
    padding: 25px 0 21px;
    font-size: 7px;
    letter-spacing: .07em;
  }

  .site-nav a::after {
    bottom: 16px;
  }

  .hero {
    min-height: 0;
    border-radius: 25px;
  }

  .hero-copy {
    padding: 43px 27px 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .hero-art {
    min-height: 240px;
  }

  .hero-symbol {
    width: 98px;
    height: 98px;
    border-radius: 27px;
  }

  .hero-symbol svg {
    width: 54px;
    height: 54px;
  }

  .section {
    padding-top: 65px;
  }

  .section-head {
    gap: 17px;
  }

  .about-story,
  .project-copy,
  .detail-body,
  .page-hero {
    padding: 27px;
  }

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

  .project-feature {
    grid-template-columns: 42px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .cta {
    margin-top: 65px;
    padding: 30px 26px;
  }

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

  .site-footer {
    flex-direction: column;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
