:root {
  color-scheme: light;
  --forest: #18392f;
  --forest-deep: #0d2922;
  --moss: #65806d;
  --sage: #b9c8b4;
  --sea: #5c8f98;
  --clay: #c86e48;
  --sand: #eee8da;
  --paper: #f8f6f0;
  --ink: #17231f;
  --muted: #63706a;
  --line: rgba(24, 57, 47, .14);
  --shadow: 0 28px 80px rgba(20, 47, 38, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: white;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(1440px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand-mark { width: 33px; height: 33px; overflow: visible; }
.brand-mark path:first-child { fill: var(--forest); }
.brand-mark path:nth-child(2) { fill: var(--paper); }
.brand-mark path:last-child { fill: none; stroke: var(--forest); stroke-width: 1.5; }

.site-header nav { display: flex; gap: 32px; margin-left: auto; }
.site-header nav a {
  color: #53615b;
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
  transition: color .2s ease;
}
.site-header nav a:hover { color: var(--forest); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-pill span {
  width: 7px;
  height: 7px;
  background: #78a276;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(120, 162, 118, .15);
}

.hero {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 82px 0 92px;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: 66px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(185, 200, 180, .32), transparent 70%);
  pointer-events: none;
}

.hero-copy { position: relative; z-index: 2; padding-left: clamp(0px, 3vw, 42px); }

.eyebrow {
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .96;
}

h1 em { color: var(--clay); font-weight: 400; }

.hero-intro {
  max-width: 560px;
  margin-bottom: 32px;
  color: #52615b;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: white; box-shadow: 0 10px 24px rgba(24,57,47,.2); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 14px 30px rgba(24,57,47,.25); }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.45); color: var(--forest); }
.button-secondary:hover { background: white; }

.hero-note { margin: 21px 0 0; color: #758079; font-size: 12px; }

.studio-preview {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(30, 58, 49, .13);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.preview-toolbar {
  min-height: 50px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #e6e7e1;
  background: #fff;
  color: #4d5c56;
  font-size: 10px;
}
.preview-brand { display: flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 740; }
.preview-brand i { width: 18px; height: 18px; border-radius: 5px; background: var(--forest); }
.preview-project { margin-left: auto; padding: 7px 9px; border: 1px solid #e3e5df; border-radius: 6px; }
.preview-project b { margin-left: 18px; }
.preview-save { padding: 7px 10px; border-radius: 6px; background: #edf3eb; color: #42603f; font-weight: 700; }

.map-canvas { position: relative; aspect-ratio: 1.37 / 1; overflow: hidden; background: #f3f1e9; }
.topography { display: block; width: 100%; height: 100%; }
.parcel { fill: rgba(255,255,255,.4); stroke: #263a33; stroke-width: 4; stroke-linejoin: round; }
.setback { fill: rgba(200,110,72,.08); stroke: var(--clay); stroke-width: 3; stroke-linejoin: round; stroke-dasharray: 9 7; }
.easement { fill: rgba(62,142,164,.17); stroke: #438da1; stroke-width: 2; }
.ocean-arrow path { fill: none; stroke: #568a91; stroke-width: 3; }
.ocean-arrow text { fill: #568a91; font: 700 11px Inter, sans-serif; letter-spacing: .14em; }
.house-selection { fill: rgba(255,255,255,.06); stroke: #4c6a5d; stroke-width: 1.5; stroke-dasharray: 5 4; }
.house-deck { fill: rgba(238,226,198,.88); stroke: #1a382e; stroke-width: 2.5; }
.house-interior { fill: rgba(255,255,255,.96); }
.house-walls { stroke: #1a382e; stroke-width: 2; }
.handles circle { fill: white; stroke: #345547; stroke-width: 2; }
.handles .rotate-handle { fill: var(--forest); }
.handles path { fill: none; stroke: white; stroke-width: 1.3; }
.map-labels rect { fill: rgba(255,255,255,.86); stroke: rgba(24,57,47,.14); }
.map-labels text { fill: #42534c; text-anchor: middle; font: 650 10px Inter, sans-serif; }

.floating-panel {
  position: absolute;
  z-index: 3;
  padding: 12px;
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(24,57,47,.13);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(28,54,45,.11);
  backdrop-filter: blur(8px);
}
.floating-panel p { margin-bottom: 5px; color: #87908b; font-size: 8px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.plan-card { top: 16px; left: 16px; width: 154px; }
.plan-card strong { display: block; color: var(--forest); font: 400 19px Georgia, serif; }
.plan-card > span { display: block; margin-top: 3px; color: #68736e; font-size: 8px; }
.mini-plan { height: 34px; margin-top: 9px; display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: 1fr 1fr; gap: 2px; padding: 3px; border: 1px solid #587064; }
.mini-plan i { border: 1px solid #8b9c93; }
.mini-plan i:first-child { grid-row: 1 / 3; }
.layer-card { top: 16px; right: 16px; width: 122px; }
.layer-card label { margin-top: 7px; display: flex; align-items: center; gap: 7px; color: #52625b; font-size: 8px; }
.switch { position: relative; width: 19px; height: 11px; border-radius: 9px; background: #d5dad5; }
.switch::after { content: ""; position: absolute; top: 2px; left: 9px; width: 7px; height: 7px; border-radius: 50%; background: white; }
.switch.on { background: var(--clay); }
.switch.blue { background: #438da1; }
.switch.sea { background: #6b9996; }
.scale-bar { position: absolute; right: 18px; bottom: 14px; color: #65736d; font-size: 8px; text-align: center; }
.scale-bar span { display: block; width: 56px; height: 5px; margin-bottom: 3px; border: solid #50645b; border-width: 0 1px 1px; }

.proof-strip {
  padding: 20px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  background: var(--forest);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.proof-strip i { width: 3px; height: 3px; border-radius: 50%; background: #9bad99; }

.section { width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 890px; }
h2 {
  margin-bottom: 28px;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.steps-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.steps-grid article { position: relative; padding: 35px 28px 0 0; }
.steps-grid article:not(:last-child) { border-right: 1px solid var(--line); margin-right: 28px; }
.steps-grid article > span { color: var(--clay); font: italic 18px Georgia, serif; }
.steps-grid h3 { margin: 38px 0 14px; color: var(--forest); font-size: 17px; letter-spacing: -.02em; }
.steps-grid p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.possibilities {
  width: 100%;
  max-width: none;
  padding: 120px max(24px, calc((100% - 1240px) / 2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  background: #e8ede5;
}
.possibility-intro { align-self: center; }
.possibility-intro > p:last-child { max-width: 530px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.possibility-stack { display: grid; gap: 13px; }
.possibility-stack article {
  padding: 25px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(24,57,47,.11);
  border-radius: 14px;
  background: rgba(248,246,240,.62);
}
.possibility-stack article.active-use { background: var(--forest); color: white; box-shadow: 0 20px 45px rgba(24,57,47,.2); }
.possibility-stack article > div:last-child > span { color: var(--clay); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.possibility-stack h3 { margin: 7px 0 6px; color: var(--forest); font: 400 25px Georgia, serif; }
.possibility-stack p { margin: 0; color: #68736e; font-size: 13px; line-height: 1.5; }
.possibility-stack .active-use h3 { color: white; }
.possibility-stack .active-use p { color: rgba(255,255,255,.65); }
.use-icon { position: relative; width: 90px; height: 72px; border-radius: 9px; background: rgba(24,57,47,.06); }
.active-use .use-icon { background: rgba(255,255,255,.09); }
.home-icon::before { content: ""; position: absolute; left: 21px; top: 29px; width: 48px; height: 31px; border: 2px solid currentColor; }
.home-icon::after { content: ""; position: absolute; left: 23px; top: 16px; width: 42px; height: 42px; border: solid currentColor; border-width: 2px 2px 0 0; transform: rotate(-45deg); }
.farm-icon span { position: absolute; left: 17px; width: 56px; height: 10px; border: solid currentColor; border-width: 1px 0; border-radius: 50%; transform: rotate(-8deg); }
.farm-icon span:nth-child(1) { top: 19px; }.farm-icon span:nth-child(2) { top: 32px; }.farm-icon span:nth-child(3) { top: 45px; }
.landscape-icon span { position: absolute; border: 2px solid currentColor; border-radius: 50%; }
.landscape-icon span:first-child { width: 45px; height: 27px; left: 14px; top: 25px; transform: rotate(-15deg); }
.landscape-icon span:last-child { width: 25px; height: 42px; right: 13px; top: 15px; transform: rotate(26deg); }

.collaboration { padding-bottom: 56px; }
.collaboration-card {
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  border-radius: 20px;
  background: var(--sand);
  position: relative;
}
.collaboration-card::after { content: ""; position: absolute; width: 380px; height: 380px; right: -190px; bottom: -260px; border: 1px solid rgba(200,110,72,.28); border-radius: 50%; box-shadow: 0 0 0 42px rgba(200,110,72,.04), 0 0 0 88px rgba(200,110,72,.03); }
.collaboration-card h2 { font-size: clamp(36px, 3.5vw, 54px); }
.collaboration-card > p { align-self: center; color: var(--muted); font-size: 16px; line-height: 1.75; }
.collaboration-tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; }
.collaboration-tags span { padding: 10px 14px; border: 1px solid rgba(24,57,47,.15); border-radius: 999px; color: var(--forest); font-size: 11px; font-weight: 700; background: rgba(255,255,255,.35); }

.boundary { padding-top: 70px; display: grid; grid-template-columns: 130px 1fr; gap: 48px; align-items: start; }
.boundary-mark { width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--sea); font: 52px Georgia, serif; }
.boundary h2 { font-size: clamp(34px, 3vw, 48px); }
.boundary p:last-child { max-width: 810px; color: var(--muted); font-size: 15px; line-height: 1.75; }

footer {
  width: min(1440px, calc(100% - 48px));
  min-height: 120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: #727d78;
  font-size: 11px;
}
.footer-brand { margin-right: 0; }
.footer-owner { margin-right: auto; }
.copyright { margin-left: auto; }
footer p { margin-bottom: 0; }

@media (max-width: 1100px) {
  .site-header nav { display: none; }
  .status-pill { margin-left: auto; }
  .hero { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { max-width: 760px; }
  .studio-preview { width: min(800px, 100%); margin: 0 auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .steps-grid article:nth-child(2) { border-right: 0; }
  .possibilities { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 720px) {
  .site-header, .hero, .section, footer { width: min(100% - 32px, 1240px); }
  .site-header { min-height: 70px; }
  .brand { font-size: 14px; }
  .brand-mark { width: 29px; height: 29px; }
  .status-pill { padding: 7px 9px; font-size: 9px; }
  .hero { min-height: auto; padding: 60px 0 70px; }
  .hero-copy { padding-left: 0; }
  h1 { font-size: clamp(48px, 15vw, 68px); }
  .studio-preview { margin-inline: -8px; width: calc(100% + 16px); }
  .preview-toolbar { gap: 8px; }
  .preview-project { display: none; }
  .preview-save { margin-left: auto; }
  .plan-card { transform: scale(.82); transform-origin: top left; }
  .layer-card { transform: scale(.82); transform-origin: top right; }
  .proof-strip { padding: 18px 16px; flex-wrap: wrap; gap: 12px 18px; }
  .proof-strip i { display: none; }
  .section { padding: 84px 0; }
  .steps-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .steps-grid article:not(:last-child) { margin-right: 0; padding-right: 0; border-right: 0; }
  .steps-grid h3 { margin-top: 18px; }
  .possibilities { width: 100%; padding: 84px 16px; }
  .possibility-stack article { grid-template-columns: 64px 1fr; gap: 16px; padding: 20px; }
  .use-icon { width: 64px; height: 60px; transform: scale(.8); transform-origin: left center; }
  .collaboration-card { grid-template-columns: 1fr; gap: 20px; }
  .collaboration-tags { margin-top: 18px; }
  .boundary { grid-template-columns: 1fr; gap: 30px; }
  .boundary-mark { width: 76px; height: 76px; }
  footer { padding: 35px 0; align-items: flex-start; flex-direction: column; gap: 14px; }
  .footer-owner { margin-right: 0; }
  .copyright { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
