:root {
  --green: #17352c;
  --deep: #0f211b;
  --moss: #6f7f3e;
  --olive: #96a15b;
  --clay: #d18b4a;
  --cream: #f8f1e6;
  --paper: #fffaf1;
  --sand: #e7d5ba;
  --ink: #17211c;
  --muted: #687267;
  --line: rgba(23, 33, 28, 0.12);
  --shadow: 0 24px 70px rgba(15, 33, 27, 0.16);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, figure { margin: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 6rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 241, 230, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,33,28,0.08);
}
.header-frame {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
}
.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-icon {
  width: 3.05rem;
  height: 3.05rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.brand-icon svg { width: 100%; height: 100%; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-weight: 900; font-size: 1.08rem; }
.brand-copy small { color: var(--muted); font-size: 0.82rem; }
.site-nav {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.site-nav a { color: var(--muted); font-size: 0.95rem; }
.site-nav a:hover { color: var(--green); }
.quote-link {
  background: var(--green);
  color: var(--paper);
  padding: 0.82rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
}

.hero { padding: 3rem 0 0; }
.hero-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1.4rem;
  align-items: stretch;
}
.hero-text {
  background: var(--deep);
  color: var(--paper);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 34px;
  display: grid;
  align-content: end;
  min-height: 38rem;
}
.eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow.dark { color: var(--moss); }
.eyebrow.light { color: #e5bd7c; }
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.75rem);
  max-width: 10ch;
}
.hero p {
  margin-top: 1.35rem;
  color: rgba(255,250,241,0.78);
  line-height: 1.85;
  max-width: 58ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--clay); color: #21150c; }
.button-secondary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: var(--paper); }
.full { width: 100%; }
.hero-photo-card {
  min-height: 38rem;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-photo-card img { height: 100%; object-fit: cover; }
.photo-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(20rem, calc(100% - 2rem));
  background: rgba(15,33,27,0.86);
  color: var(--paper);
  border-radius: 22px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}
.photo-caption span {
  display: block;
  color: #e5bd7c;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 0.4rem;
}
.signal-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.signal-row div {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.54);
  border-radius: 22px;
  padding: 1rem;
}
.signal-row span { display: block; color: var(--clay); font-weight: 900; margin-bottom: 0.35rem; }
.signal-row strong { line-height: 1.4; }

.vision-grid,
.lab-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: start;
}
.vision-sticky {
  position: sticky;
  top: 7rem;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  max-width: 11ch;
}
.vision-content p,
.lab-copy p,
.lab-copy li,
.service-card p,
.work-copy p,
.contact-copy p,
.contact-list strong,
.form-note,
.footer-brand p,
.footer-contact,
.footer-nav {
  color: var(--muted);
  line-height: 1.82;
}
.vision-content > p { font-size: 1.08rem; max-width: 60ch; }
.vision-photo-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  margin-top: 2rem;
}
.vision-photo-row img {
  height: 24rem;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.vision-photo-row img:nth-child(2) { margin-top: 4rem; }

.services-section {
  padding: 6rem 0;
  background: var(--green);
  color: var(--paper);
}
.services-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
}
.services-intro {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  padding: 2rem;
  align-self: start;
  position: sticky;
  top: 7rem;
}
.services-intro h2 { color: var(--paper); }
.services-intro p { margin-top: 1rem; color: rgba(255,250,241,0.72); line-height: 1.8; }
.service-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card {
  min-height: 15rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}
.service-card span { color: var(--clay); font-weight: 900; letter-spacing: 0.12em; }
.service-card h3 { margin-top: 1rem; margin-bottom: 0.65rem; font-size: 1.7rem; }

.design-lab-section { background: var(--paper); }
.lab-photo { min-height: 35rem; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); }
.lab-photo img { height: 100%; object-fit: cover; }
.lab-copy {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 2rem;
  display: grid;
  align-content: center;
}
.lab-copy p { margin-top: 1rem; }
.lab-copy ul { margin-top: 1.2rem; display: grid; gap: 0.7rem; }
.lab-copy li { position: relative; padding-left: 1.1rem; }
.lab-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--clay);
}

.work-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 42rem;
  background: var(--deep);
  color: var(--paper);
}
.work-copy {
  padding: 4rem;
  display: grid;
  align-content: center;
}
.work-copy h2 { color: var(--paper); }
.work-copy p { color: rgba(255,250,241,0.74); margin-top: 1rem; }
.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
}
.work-gallery figure { position: relative; overflow: hidden; border-radius: 20px; }
.work-gallery img { height: 100%; object-fit: cover; }
.work-gallery figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgba(15,33,27,0.75);
  color: var(--paper);
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
}

.contact-list { display: grid; gap: 0.8rem; margin-top: 1.6rem; }
.contact-list a,
.contact-list div {
  display: block;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
}
.contact-list span {
  display: block;
  color: var(--clay);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  margin-bottom: 0.42rem;
}
.contact-form {
  background: var(--deep);
  color: var(--paper);
  border-radius: 32px;
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 0.45rem; }
.contact-form span { font-size: 0.92rem; font-weight: 850; color: #e5bd7c; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,250,241,0.46); }
.contact-form select option { color: var(--ink); }
.form-note { color: rgba(255,250,241,0.62); font-size: 0.9rem; }

.site-footer {
  padding: 3rem 0;
  background: var(--green);
  color: var(--paper);
}
.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr;
  gap: 1rem;
}
.footer-brand span {
  display: block;
  font-family: Georgia, serif;
  font-size: 3rem;
  color: #e5bd7c;
  margin-bottom: 0.7rem;
}
.footer-brand p,
.footer-nav a,
.footer-contact a,
.footer-contact span { color: rgba(255,250,241,0.72); }
.footer-nav,
.footer-contact { display: grid; gap: 0.55rem; align-content: start; }

@media (max-width: 980px) {
  .header-frame { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .site-nav,
  .quote-link { display: none; }
  .site-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-self: stretch;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(248,241,230,0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .hero-shell,
  .signal-row,
  .vision-grid,
  .services-grid,
  .lab-grid,
  .work-section,
  .contact-grid,
  .footer-layout { grid-template-columns: 1fr; }
  .hero-text,
  .hero-photo-card { min-height: 30rem; }
  .vision-sticky,
  .services-intro { position: static; }
  .work-gallery { min-height: 30rem; }
  .work-copy { padding: 2rem 1rem; }
}
@media (max-width: 680px) {
  .section, .services-section { padding: 4.5rem 0; }
  .hero { padding-top: 1rem; }
  .hero h1 { max-width: none; }
  .vision-photo-row,
  .service-stack,
  .work-gallery { grid-template-columns: 1fr; }
  .vision-photo-row img:nth-child(2) { margin-top: 0; }
  .work-gallery figure { min-height: 18rem; }
}
