/* ============================================================
   The landscaper & I — static site styles
   Palette: olive, sage, limestone, sand, ivory, bronze, ink
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --olive: #55624b;
  --olive-90: rgba(85, 98, 75, 0.92);
  --olive-60: rgba(85, 98, 75, 0.6);
  --olive-40: rgba(85, 98, 75, 0.4);
  --sage: #a8b39e;
  --limestone: #e8e1d6;
  --limestone-40: rgba(232, 225, 214, 0.4);
  --limestone-30: rgba(232, 225, 214, 0.3);
  --sand: #dccdb8;
  --ivory: #f7f4ee;
  --ivory-85: rgba(247, 244, 238, 0.85);
  --ivory-70: rgba(247, 244, 238, 0.7);
  --ivory-25: rgba(247, 244, 238, 0.25);
  --bronze: #9c7a4a;
  --ink: #2f2e29;
  --ink-85: rgba(47, 46, 41, 0.85);
  --ink-75: rgba(47, 46, 41, 0.75);
  --ink-70: rgba(47, 46, 41, 0.7);
  --ink-65: rgba(47, 46, 41, 0.65);
  --ink-60: rgba(47, 46, 41, 0.6);
  --ink-50: rgba(47, 46, 41, 0.5);
  --ink-30: rgba(47, 46, 41, 0.3);
  --border: #d9d3c6;
  --border-60: rgba(217, 211, 198, 0.6);
  --border-70: rgba(217, 211, 198, 0.7);
  --destructive: #b8452b;

  --font-serif: "Cormorant Garamond", "EB Garamond", ui-serif, Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; color: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 78rem; margin-inline: auto; padding-inline: 1.5rem; }
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--olive); }
.olive { color: var(--olive); }
.hidden-mobile { display: none; }
@media (min-width: 1024px) {
  .hidden-mobile { display: flex; }
  .only-mobile { display: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 400ms ease, border-color 400ms ease, backdrop-filter 400ms ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--ivory-85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: var(--border-60);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; gap: 1rem; }
.brand { font-family: var(--font-serif); font-size: 1.125rem; color: var(--ink); letter-spacing: -0.01em; transition: color 200ms; }
.brand:hover { color: var(--olive); }
.brand .amp { color: var(--olive); }
.nav-main { display: none; align-items: center; gap: 2.25rem; }
.nav-main a { font-size: 0.875rem; color: var(--ink-75); transition: color 200ms; letter-spacing: 0.01em; }
.nav-main a:hover, .nav-main a.active { color: var(--olive); }
.nav-right { display: none; align-items: center; gap: 1.5rem; }
.lang-toggle { font-size: 11px; letter-spacing: 0.2em; color: var(--ink-60); transition: color 200ms; }
.lang-toggle:hover { color: var(--olive); }
.lang-toggle .active { color: var(--olive); }
.lang-toggle .sep { margin: 0 0.375rem; color: var(--ink-30); }
.btn-outline {
  display: inline-flex; align-items: center; padding: 0.625rem 1.25rem;
  font-size: 0.875rem; border: 1px solid var(--olive); color: var(--olive);
  transition: background-color 200ms, color 200ms;
}
.btn-outline:hover { background: var(--olive); color: var(--ivory); }
.menu-btn { display: inline-flex; padding: 0.25rem; color: var(--ink); }
@media (min-width: 1024px) {
  .nav-main, .nav-right { display: flex; }
  .menu-btn { display: none; }
}
.mobile-menu { display: none; background: var(--ivory); border-top: 1px solid var(--border); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 1.25rem; padding: 1.5rem 0; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; color: var(--ink); }
.mobile-menu a.active { color: var(--olive); }
.mobile-menu-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; background: var(--olive); color: var(--ivory);
  transition: background-color 200ms;
}
.btn:hover { background: var(--ink); }
.btn-lg { padding: 1rem 2rem; }
.btn-ghost {
  display: inline-flex; align-items: center; padding: 0.75rem 1.5rem;
  font-size: 0.875rem; border: 1px solid var(--olive-60); color: var(--olive);
  transition: background-color 200ms, color 200ms;
}
.btn-ghost:hover { background: var(--olive); color: var(--ivory); }
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--olive); transition: color 200ms;
}
.arrow-link:hover { color: var(--ink); }
.underline-link {
  display: inline-block; font-size: 0.875rem; color: var(--olive);
  border-bottom: 1px solid var(--olive-60); padding-bottom: 2px;
  transition: border-color 200ms;
}
.underline-link:hover { border-bottom-color: var(--olive); }

/* ---------- Main ---------- */
main { padding-top: 5rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; margin-top: -5rem; min-height: 100svh; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,244,238,0.7) 0%, rgba(247,244,238,0.25) 50%, var(--ivory) 100%);
}
.hero-inner {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 10rem; padding-bottom: 6rem;
}
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); line-height: 1.02; max-width: 48rem; }
.hero p.lead { margin-top: 2rem; max-width: 32rem; font-size: 1.0625rem; color: var(--ink-75); line-height: 1.6; }
.hero-ctas { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Sections ---------- */
section { }
.section { padding-top: 7rem; padding-bottom: 7rem; }
.section-tight { padding-top: 6rem; padding-bottom: 4rem; }
.section-band { background: var(--limestone-40); border-top: 1px solid var(--border-60); border-bottom: 1px solid var(--border-60); }
.section-band-soft { background: var(--limestone-30); border-top: 1px solid var(--border-60); border-bottom: 1px solid var(--border-60); }
.section-dark { background: var(--olive); color: var(--ivory); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }

.section-heading { max-width: 48rem; }
.section-heading .eyebrow { margin-bottom: 1.5rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; }
.section-heading .lead { margin-top: 1.5rem; font-size: 1.0625rem; color: var(--ink-70); line-height: 1.6; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-5 { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}
.grid-hero-split { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .grid-hero-split { grid-template-columns: 1fr 1fr; align-items: end; } }

/* ---------- Pillars / steps ---------- */
.pillars {
  display: grid; gap: 3rem 2.5rem;
  border-top: 1px solid var(--border-60); padding-top: 3rem;
  margin-top: 4rem;
}
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar .num { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive-90); margin-bottom: 1rem; }
.pillar h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.875rem; color: var(--ink-65); line-height: 1.6; }

.steps { display: grid; gap: 2.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { border-top: 1px solid var(--olive-40); padding-top: 1.5rem; }
.step .n { font-family: var(--font-serif); font-size: 1.875rem; color: var(--olive); margin-bottom: 1rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.875rem; color: var(--ink-65); line-height: 1.6; }

/* ---------- Package card ---------- */
.packages { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 1024px) { .packages { grid-template-columns: repeat(3, 1fr); } }
.pkg {
  position: relative; display: flex; flex-direction: column;
  background: #fdfbf6; border: 1px solid var(--border-70);
  padding: 2rem; transition: border-color 200ms;
}
.pkg:hover { border-color: var(--olive-40); }
@media (min-width: 640px) { .pkg { padding: 2.5rem; } }
.pkg-recommended { background: var(--ivory); border-color: var(--olive-60); }
.pkg-badge {
  position: absolute; top: -12px; left: 2rem;
  background: var(--olive); color: var(--ivory);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 0.25rem 0.75rem;
}
.pkg-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.pkg-head h3 { font-size: 1.875rem; }
.pkg-price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--olive); white-space: nowrap; }
.pkg-summary { margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.6; color: var(--ink-70); }
.pkg-list { list-style: none; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-60); display: flex; flex-direction: column; gap: 0.75rem; }
.pkg-list li { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--ink-85); }
.pkg-list li::before {
  content: ""; flex: 0 0 auto; width: 14px; height: 14px; margin-top: 4px;
  background: var(--olive);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.pkg-foot { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border-60); }

/* ---------- Credibility ---------- */
.cred { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .cred { grid-template-columns: 1fr 1.1fr; } }
.cred h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cred ul { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cred li { display: flex; gap: 1rem; font-size: 0.875rem; color: var(--ink-85); border-top: 1px solid var(--border-60); padding-top: 0.75rem; }
.cred li .dash { color: var(--olive); }

/* ---------- Inspiration grid ---------- */
.inspiration { display: grid; gap: 1.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .inspiration { grid-template-columns: repeat(6, 1fr); } }
.insp { overflow: hidden; background: var(--limestone); }
.insp img { width: 100%; height: 100%; object-fit: cover; }
.insp-4 { grid-column: span 6; aspect-ratio: 4 / 3; }
.insp-2 { grid-column: span 6; aspect-ratio: 4 / 5; }
.insp-3 { grid-column: span 6; aspect-ratio: 3 / 4; }
@media (min-width: 768px) {
  .insp-4 { grid-column: span 4; }
  .insp-2 { grid-column: span 2; height: 100%; }
  .insp-3 { grid-column: span 3; }
}

/* ---------- Collab band ---------- */
.collab-band { display: grid; gap: 2.5rem; align-items: end; }
@media (min-width: 1024px) { .collab-band { grid-template-columns: 1.2fr 1fr; } }
.collab-band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.collab-band p { color: var(--ivory); opacity: 0.9; font-size: 1.0625rem; line-height: 1.6; }
.collab-band .arrow-link {
  color: var(--ivory);
  margin-top: 2rem;
  border-bottom: 1px solid rgba(247,244,238,0.6);
  padding-bottom: 4px;
}
.collab-band .arrow-link:hover { color: var(--ivory); border-bottom-color: var(--ivory); }

/* ---------- Final CTA ---------- */
.final { padding: 8rem 0; text-align: center; }
.final h2 { font-size: clamp(2.5rem, 6vw, 4rem); max-width: 48rem; margin: 0 auto; line-height: 1.05; }
.final p { margin-top: 1.5rem; max-width: 32rem; margin-left: auto; margin-right: auto; color: var(--ink-70); font-size: 1.0625rem; }
.final .btn { margin-top: 2.5rem; }

/* ---------- Page header (secondary pages) ---------- */
.page-head { padding-top: 6rem; padding-bottom: 4rem; }
.page-head h1 { font-size: clamp(2.5rem, 5vw, 4rem); max-width: 48rem; }
.page-head .lead { margin-top: 1.5rem; max-width: 40rem; font-size: 1.0625rem; color: var(--ink-70); line-height: 1.6; }
.page-head-split { display: grid; gap: 4rem; align-items: end; }
@media (min-width: 1024px) { .page-head-split { grid-template-columns: 1fr 1fr; } }

.wide-image { width: 100%; }
.wide-image img { width: 100%; max-height: 80vh; object-fit: cover; }

/* ---------- About sections list ---------- */
.about-sections { display: grid; gap: 4rem; }
@media (min-width: 768px) { .about-sections { grid-template-columns: repeat(2, 1fr); } }
.about-sec { border-top: 1px solid var(--olive-40); padding-top: 2rem; }
.about-sec h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
.about-sec p { margin-top: 1rem; color: var(--ink-70); line-height: 1.6; }

/* ---------- Services / support ---------- */
.services-head { border-bottom: 1px solid var(--border-60); padding-bottom: 1rem; margin-bottom: 3rem; font-size: 1.875rem; }
.support-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
.support-card { border: 1px solid var(--border-70); padding: 2rem; height: 100%; }
@media (min-width: 640px) { .support-card { padding: 2.5rem; } }
.support-card .head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.support-card h3 { font-size: 1.5rem; }
.support-card .price { font-size: 0.875rem; color: var(--olive); white-space: nowrap; }
.support-card p { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: var(--ink-70); }

.for-whom { margin-top: 3rem; border-top: 1px solid var(--border-60); border-bottom: 1px solid var(--border-60); }
.for-whom-row { display: grid; gap: 1rem; padding: 2rem 0; border-bottom: 1px solid var(--border-60); align-items: baseline; }
.for-whom-row:last-child { border-bottom: 0; }
@media (min-width: 768px) { .for-whom-row { grid-template-columns: 220px 1fr; } }
.for-whom-row .name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--olive); }
.for-whom-row p { font-size: 1rem; color: var(--ink-75); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { margin-top: 3rem; border-top: 1px solid var(--border-60); }
.faq details { border-bottom: 1px solid var(--border-60); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink);
  transition: color 200ms;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--olive); }
.faq summary .chev {
  width: 16px; height: 16px; margin-left: 1rem; color: var(--olive);
  transition: transform 250ms;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat center / contain;
}
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .answer { padding: 0 0 1.5rem; color: var(--ink-70); font-size: 1rem; line-height: 1.65; }

/* ---------- Collaboration modes ---------- */
.modes { display: grid; gap: 3.5rem 2.5rem; margin-top: 4rem; }
@media (min-width: 768px) { .modes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modes { grid-template-columns: repeat(3, 1fr); } }
.mode { border-top: 1px solid var(--olive-40); padding-top: 1.5rem; }
.mode h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.mode p { font-size: 0.875rem; color: var(--ink-65); line-height: 1.6; }

/* ---------- Contact form ---------- */
.form-shell {
  display: grid; gap: 2.5rem;
  padding-top: 3rem; border-top: 1px solid var(--border-60);
}
@media (min-width: 1024px) { .form-shell { grid-template-columns: 220px 1fr; } }
.form-side .k { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive-90); }
.form-side p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--ink-60); }
.form { display: grid; gap: 2rem; }
.field-row { display: grid; gap: 2rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: repeat(2, 1fr); } }
.field label {
  display: block; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-60); margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%; background: #fdfbf6; color: var(--ink);
  border: 1px solid var(--border-70); padding: 0.75rem 0.875rem;
  font: inherit; border-radius: 0;
  transition: border-color 200ms, box-shadow 200ms;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--olive); box-shadow: 0 0 0 1px var(--olive-40);
}
.field textarea { resize: vertical; min-height: 6rem; }
.field .hint { margin-top: 0.375rem; font-size: 12px; color: var(--ink-50); }

/* ---------- Footer ---------- */
.site-footer { margin-top: 8rem; border-top: 1px solid var(--border-70); background: rgba(232, 225, 214, 0.5); }
.footer-grid { display: grid; gap: 3rem; padding: 4rem 0; }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ink); }
.footer-brand .name .amp { color: var(--olive); }
.footer-brand p { margin-top: 1rem; max-width: 22rem; font-size: 0.875rem; color: var(--ink-70); line-height: 1.6; }
.footer-col .k {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-50); margin-bottom: 1rem;
}
.footer-col a, .footer-col .val { font-size: 0.875rem; color: var(--ink-75); transition: color 200ms; display: block; }
.footer-col a:hover { color: var(--olive); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 2rem 0; border-top: 1px solid var(--border-60);
  font-size: 12px; color: var(--ink-50);
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bottom .locales { letter-spacing: 0.2em; text-transform: uppercase; }

/* ---------- Fade-in ---------- */
.fade { opacity: 0; transform: translateY(16px); transition: opacity 900ms cubic-bezier(.2,.6,.2,1), transform 900ms cubic-bezier(.2,.6,.2,1); }
.fade.visible { opacity: 1; transform: translateY(0); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.center { text-align: center; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.audience { margin-top: 2rem; font-size: 0.875rem; color: var(--olive); letter-spacing: 0.01em; }
