:root {
  --paper: #f7f5ef;
  --paper-2: #eeece5;
  --white: #fff;
  --ink: #18211e;
  --muted: #66706c;
  --line: rgba(24, 33, 30, .13);
  --green: #1f5147;
  --green-dark: #153b34;
  --gold: #b59a63;
  --shadow: 0 24px 70px rgba(24, 33, 30, .12);
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  z-index: 20;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; }
h1 { font-size: clamp(3.15rem, 5.3vw, 6rem); font-weight: 560; }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.5rem); font-weight: 520; }
h3 { font-size: 1.45rem; }
em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  padding: .7rem 1rem;
  background: var(--ink);
  color: #fff;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 15;
  min-height: 82px;
  padding: 0 clamp(1.25rem, 4.5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(24, 33, 30, .08);
  background: rgba(247, 245, 239, .88);
  backdrop-filter: blur(18px);
}
.logo {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .18em;
  white-space: nowrap;
}
.logo span { color: var(--green); }
.logo i { color: var(--gold); font-style: normal; }
nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.2rem); }
nav a {
  text-decoration: none;
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: .05em;
}
nav a:not(.nav-button):hover { color: var(--green); }
.nav-button {
  padding: .72rem 1.05rem;
  border: 1px solid var(--ink);
  border-radius: 99px;
  transition: .25s ease;
}
.nav-button:hover { background: var(--ink); color: #fff; }
.menu { display: none; }

.hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7.5rem) clamp(1.25rem, 4.5vw, 5rem) clamp(5rem, 8vw, 8rem);
  min-height: calc(100vh - 82px);
}
.hero-content {
  display: grid;
  grid-template-columns: minmax(440px, .92fr) minmax(540px, 1.08fr);
  gap: clamp(2.5rem, 4.5vw, 5.5rem);
  align-items: center;
}
.hero-copy { max-width: 650px; }
.hero-brand {
  margin: 0 0 clamp(4rem, 6vw, 7rem);
  color: var(--ink);
  font-size: clamp(5rem, 9.2vw, 9.5rem);
  font-weight: 850;
  line-height: .9;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.hero-brand span { color: var(--green); }
.hero-brand i { color: var(--gold); font-style: normal; }
.kicker {
  margin-bottom: 1.35rem;
  color: var(--green);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  margin: 0 .75rem .22rem 0;
  background: var(--gold);
}
.kicker.light { color: #d8e3de; }
.hero h1 { margin-bottom: 1.8rem; font-size: clamp(2.6rem, 3.8vw, 4.4rem); }
.hero h1 em { display: block; color: var(--green); }
.lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}
.actions { display: flex; align-items: center; gap: 1.5rem; margin: 2.4rem 0 3.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  min-height: 52px;
  padding: .85rem 1.2rem;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  font: inherit;
  font-size: .84rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: #fff; background: var(--green); }
.button.primary:hover { background: var(--green-dark); }
.button.accent { color: var(--ink); background: #d7bd84; width: 100%; }
.text-link {
  padding-bottom: .15rem;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
}
.hero-meta {
  display: flex;
  gap: 1.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.hero-meta span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }
.hero-meta b { margin-right: .35rem; color: var(--gold); }

.hero-showcase { min-width: 0; scroll-margin-top: 110px; }
.showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.showcase-head .kicker { margin-bottom: .7rem; }
.showcase-head h2 { margin: 0; font-size: clamp(1.65rem, 2.4vw, 2.65rem); }
.showcase-head h2 em { color: var(--green); }
.showcase-head > span {
  padding-bottom: .2rem;
  color: var(--muted);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  gap: 1rem;
  align-items: end;
}
.showcase-card {
  position: relative;
  display: block;
  min-height: 490px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.showcase-garden { min-height: 420px; }
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(11, 18, 16, .83));
}
.showcase-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2, .7, .2, 1), opacity .3s ease;
}
.showcase-workshop img { object-position: 50% 50%; }
.showcase-garden img { object-position: 50% 50%; }
.showcase-card:hover img { transform: scale(1.035); opacity: .92; }
.showcase-label {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(1.2rem, 2vw, 2rem);
}
.showcase-label small { display: block; margin-bottom: .55rem; opacity: .74; font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.showcase-label strong { display: block; font-family: Georgia, serif; font-size: clamp(1.45rem, 2.2vw, 2.2rem); font-weight: 400; }
.showcase-label i {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.5);
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.statement {
  padding: clamp(5rem, 10vw, 10rem) max(1.25rem, calc((100vw - 1260px) / 2));
  text-align: center;
  background: #fff;
  border-block: 1px solid var(--line);
}
.statement p { margin-bottom: 1.5rem; color: var(--green); font-size: 1rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.statement h2 { max-width: 1050px; margin: 0 auto; font-family: Georgia, serif; font-weight: 400; }

.services, .process, .about, .contact {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 4.5vw, 5rem);
  scroll-margin-top: 80px;
}
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 4rem; }
.services .section-head .kicker { font-size: .95rem; }
.section-head h2 { margin: 0; }
.section-head h2 em { color: var(--green); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.service-grid article {
  padding: 2rem clamp(1rem, 2vw, 2rem) 1rem;
  border-right: 1px solid var(--line);
}
.service-grid article:first-child { padding-left: 0; }
.service-grid article:last-child { border: 0; }
.service-grid article > span { color: var(--gold); font-size: .72rem; font-weight: 800; }
.service-grid h3 { margin: 2.8rem 0 1rem; }
.service-grid p { color: var(--muted); font-size: .94rem; }

.process { max-width: none; background: #eae8e1; }
.process > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.timeline { border-top: 1px solid var(--line); }
.timeline article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
}
.timeline article > span { color: var(--gold); font-size: .75rem; font-weight: 800; }
.timeline h3 { margin-bottom: .5rem; }
.timeline p { max-width: 720px; margin: 0; color: var(--muted); }

.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-card {
  min-height: 500px;
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}
.about-card > span { font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.7rem); }
.about-card small { opacity: .68; letter-spacing: .08em; text-transform: uppercase; }
.portrait-mark { align-self: center; font-size: clamp(5rem, 10vw, 8rem); font-weight: 800; letter-spacing: -.1em; opacity: .14; }
.portrait-mark span { color: #e1c88d; }
.about-copy h2 { max-width: 740px; }
.about-copy > p:not(.kicker) { color: var(--muted); font-size: 1.05rem; }
.about-copy ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.about-copy li { padding: .75rem 0; border-bottom: 1px solid var(--line); }
.about-copy li::before { content: "↗"; margin-right: .8rem; color: var(--gold); }

.contact {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  color: #fff;
  background: var(--green-dark);
}
.contact > div, .contact form { width: min(100%, 600px); }
.contact > div { margin-left: auto; }
.contact h2 em { color: #d8c18e; }
.contact > div > p:not(.kicker) { max-width: 540px; color: rgba(255,255,255,.7); }
.contact-data { display: flex; flex-direction: column; gap: .35rem; margin-top: 3rem; }
.contact-data a { font-family: Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.8rem); }
.contact-data span { color: rgba(255,255,255,.55); font-size: .78rem; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
form label { display: flex; flex-direction: column; gap: .4rem; font-size: .68rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
form label:nth-child(4), form label:nth-child(5), .check, form button, .success { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: .85rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
select option {
  color: #18211e;
  background: #fff;
  font-size: 1rem;
  font-weight: 400;
}
input:focus, select:focus, textarea:focus { border-color: #d7bd84; }
textarea { resize: vertical; }
.check { flex-direction: row; align-items: flex-start; font-weight: 400; letter-spacing: 0; text-transform: none; color: rgba(255,255,255,.7); }
.check input { width: auto; margin-top: .35rem; }
.success { color: #d7bd84; }

footer {
  min-height: 110px;
  padding: 2rem clamp(1.25rem, 4.5vw, 5rem);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 2rem;
  align-items: center;
  color: #fff;
  background: #102d28;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}
footer p { margin: 0; color: rgba(255,255,255,.55); }
footer div { display: flex; gap: 1.4rem; }
footer > span { color: rgba(255,255,255,.55); }
.footer-logo span { color: #d8c18e; }

.legal {
  max-width: 900px;
  min-height: calc(100vh - 192px);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}
.legal h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal h2 { margin-top: 2.5rem; font-size: 1.55rem; }
.legal h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--green); }

@media (max-width: 1180px) {
  .hero { min-height: auto; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .showcase-card { min-height: 520px; }
  .showcase-garden { min-height: 460px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-grid article:nth-child(2) { border-right: 0; }
  .service-grid article:nth-child(3), .service-grid article:nth-child(4) { border-top: 1px solid var(--line); }
  .service-grid article:nth-child(3) { padding-left: 0; }
}

@media (max-width: 900px) {
  .header { min-height: 68px; padding-inline: 1.1rem; }
  .menu {
    display: block;
    padding: .55rem .75rem;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-size: .75rem;
    font-weight: 700;
  }
  nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 1.3rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(24,33,30,.08);
  }
  nav.open { display: flex; }
  nav a { padding: .8rem 0; }
  .nav-button { margin-top: .5rem; padding-inline: 1rem; text-align: center; }
  .hero { padding-top: 3.5rem; }
  .hero-content { gap: 3.3rem; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
  .hero-brand { margin-bottom: 3.5rem; font-size: clamp(2.7rem, 12vw, 3.7rem); }
  .hero h1 em { margin-top: .18em; }
  .actions { align-items: flex-start; flex-direction: column; gap: 1rem; margin: 2rem 0 2.5rem; }
  .hero-meta { gap: .7rem; justify-content: space-between; }
  .hero-meta span { display: flex; flex-direction: column; }
  .showcase-head { align-items: flex-start; flex-direction: column; }
  .showcase-head > span { white-space: normal; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card, .showcase-garden { min-height: min(112vw, 470px); }
  .statement { text-align: left; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article,
  .service-grid article:first-child,
  .service-grid article:nth-child(3) {
    padding: 1.8rem 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .service-grid article:first-child { border-top: 0; }
  .service-grid h3 { margin-top: 1.3rem; }
  .timeline article { grid-template-columns: 52px 1fr; }
  .about, .contact { grid-template-columns: 1fr; }
  .about-card { min-height: 390px; }
  .contact > div { margin-left: 0; }
  form { grid-template-columns: 1fr; }
  form label { grid-column: 1 / -1; }
  footer { grid-template-columns: 1fr; gap: .7rem; }
  footer div { margin: .5rem 0; }
}

@media (min-width: 761px) and (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card, .showcase-garden { min-height: 470px; }
  .about, .contact { grid-template-columns: 1fr; }
  .contact > div { margin-left: 0; }
}

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