:root {
  --ink: #282a25;
  --forest: #2f3b31;
  --forest-deep: #202820;
  --pine: #626a51;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --wood: #a97847;
  --wood-light: #d4b58d;
  --line: rgba(40, 42, 37, 0.16);
  --shadow: 0 24px 60px rgba(32, 40, 32, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 82px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: white;
  background: rgba(32, 40, 32, 0.94);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}
nav { display: flex; gap: clamp(1rem, 3vw, 2.5rem); }
nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 650;
}
nav a:hover, nav a:focus-visible { color: white; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(5rem, 9vw, 9rem) max(5vw, calc((100vw - var(--max))/2));
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(212,181,141,.22), transparent 25rem),
    linear-gradient(135deg, var(--forest-deep), var(--forest) 58%, #465140);
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--wood-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(3.3rem, 7.2vw, 7.2rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.3rem, 4.8vw, 4.5rem); letter-spacing: -.035em; }
.hero-lede {
  max-width: 660px;
  margin: 2rem 0 2.2rem;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero-mark { position: relative; }
.hero-mark::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  transform: scale(1.18);
}
.hero-mark img {
  width: min(100%, 520px);
  margin-inline: auto;
  border-radius: 50%;
  box-shadow: var(--shadow);
  mix-blend-mode: screen;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.2rem;
  border: 1px solid rgba(255,255,255,.5);
  color: white;
  text-decoration: none;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: white; color: var(--forest-deep); }
.button-dark { border-color: var(--forest); background: var(--forest); }
.button-dark:hover, .button-dark:focus-visible { background: var(--wood); border-color: var(--wood); color: white; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 1.5rem;
}
.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.about .eyebrow, .company .eyebrow, .craft .eyebrow { color: var(--wood); }
.about-copy { font-size: 1.08rem; }
.about-copy p:first-child { margin-top: 0; }
.about-copy p:last-child { margin-bottom: 0; color: #5d5e58; }

.company {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(500px, 1.35fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-inline: max(5vw, calc((100vw - var(--max))/2));
  background: var(--cream);
}
.company-copy p { max-width: 550px; color: #565851; }
.company-copy h2 { margin-bottom: 1.5rem; }
.company-copy .button { margin-top: 1rem; }
.text-link { color: var(--forest); font-weight: 800; text-underline-offset: .2em; }
.site-preview {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(40,42,37,.16);
  border-radius: 10px;
  background: white;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.site-preview:hover, .site-preview:focus-visible { transform: translateY(-5px); box-shadow: 0 30px 75px rgba(32,40,32,.2); }
.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border-bottom: 1px solid #ddd;
  background: #efefeb;
}
.browser-bar span { width: 9px; height: 9px; border-radius: 50%; background: #b4b4ac; }
.site-preview img { width: 100%; aspect-ratio: 1.92/1; object-fit: cover; object-position: top; }

.craft {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  gap: clamp(3rem, 8vw, 8rem);
}
.craft-image {
  min-height: 480px;
  border-radius: 50% 50% 4px 4px;
  background:
    repeating-radial-gradient(ellipse at 30% 100%, transparent 0 19px, rgba(62,43,25,.12) 20px 22px),
    linear-gradient(135deg, #d2b087, #9a6840 55%, #5e412d);
  box-shadow: inset 0 0 0 1px rgba(40,42,37,.12), var(--shadow);
}
.craft-copy { align-self: center; }
.craft-copy h2 { margin-bottom: 1.5rem; }
.craft-copy > p:not(.eyebrow) { max-width: 650px; color: #565851; font-size: 1.08rem; }
.principles {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 2rem;
}
.principles span {
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

footer {
  padding: 2rem 1.5rem;
  color: rgba(255,255,255,.76);
  background: var(--forest-deep);
  text-align: center;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-mark { max-width: 420px; margin: 1rem auto 0; }
  .about, .company, .craft { grid-template-columns: 1fr; }
  .company { padding-inline: 1.5rem; }
  .site-preview { order: -1; }
  .craft-image { min-height: 360px; max-width: 600px; width: 100%; }
}

@media (max-width: 650px) {
  .site-header { min-height: 72px; }
  .brand span { display: none; }
  .brand img { width: 48px; height: 48px; }
  nav { gap: 1rem; }
  nav a { font-size: .82rem; }
  nav a:nth-child(3) { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero { padding-top: 5rem; }
  .section { padding-block: 4.5rem; }
}

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