/* Rowan & Fitch Landscapes — sample site.
   Editorial and unhurried: a serif display face, wide margins, muted olive and
   stone. Deliberately the opposite of the Copperline sample — a garden designer
   sells taste, so the site has to demonstrate some. */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --olive-900: #232a20;
  --olive-800: #313a2c;
  --olive-600: #4d5c43;
  --olive-400: #7d8f6e;
  --sage: #a8b89a;
  --sage-pale: #dde3d5;
  --stone: #f3f1ea;
  --stone-dark: #e6e2d6;
  --paper: #fbfaf6;
  --ink: #23271f;
  --ink-soft: #5a6154;
  --clay: #b5714e;
  --line: rgba(35, 42, 32, 0.14);
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shell: 1160px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0; font-family: var(--body); color: var(--ink); background: var(--paper);
  font-size: 1rem; line-height: 1.72; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display); font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em; margin: 0; text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 8vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h3 { font-size: 1.42rem; }
p { margin: 0 0 1.1rem; }

.shell { width: min(var(--shell), 100%); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { width: min(760px, 100%); }
.skip-link { position: absolute; left: -9999px; background: var(--olive-800); color: #fff; padding: 0.7rem 1.1rem; z-index: 100; }
.skip-link:focus { left: 0; top: 0; }
:focus-visible { outline: 2px solid var(--olive-600); outline-offset: 3px; }

.eyebrow {
  font-family: var(--body); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--olive-400);
  margin: 0 0 1.1rem;
}

/* --- sample banner ------------------------------------------------------- */
.sample-bar {
  background: var(--olive-900); color: var(--sage-pale);
  font-size: 0.8rem; line-height: 1.5; padding: 0.6rem 0;
}
.sample-bar strong { color: #fff; font-weight: 700; }
.sample-bar a { color: var(--sage); }

/* --- header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(9px); border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 80px; }
.brand { margin-right: auto; text-decoration: none; display: block; }
.brand__name {
  font-family: var(--display); font-size: 1.5rem; line-height: 1.05;
  display: block; color: var(--olive-900);
}
.brand__sub {
  font-size: 0.63rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--olive-400); font-weight: 700;
}
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__links a {
  text-decoration: none; font-size: 0.83rem; letter-spacing: 0.13em;
  text-transform: uppercase; font-weight: 600; color: var(--ink-soft);
  padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.nav__links a:hover { color: var(--olive-900); border-bottom-color: var(--olive-400); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-size: 0.79rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: all 0.2s ease;
}
.btn--olive { background: var(--olive-800); color: var(--stone); }
.btn--olive:hover { background: var(--olive-900); }
.btn--outline { border-color: var(--olive-600); color: var(--olive-800); }
.btn--outline:hover { background: var(--olive-800); color: var(--stone); }
.btn--light { background: var(--stone); color: var(--olive-900); }
.btn--light:hover { background: #fff; }

/* --- hero ---------------------------------------------------------------- */
.hero { padding: clamp(3.5rem, 9vw, 7.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--olive-600); }
.hero__lede {
  font-size: clamp(1.1rem, 2.1vw, 1.32rem); color: var(--ink-soft);
  max-width: 52ch; margin-bottom: 2.2rem; line-height: 1.65;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* A garden practice lives or dies on how the work looks, so the hero gives the
   imagery the room a photograph would get. These are CSS-drawn placeholders,
   sized and cropped exactly as the real photographs will be. */
.hero__gallery {
  display: grid; gap: 0.9rem; margin-top: clamp(2.5rem, 6vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.plate { border-radius: 2px; position: relative; overflow: hidden; }
.plate::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 4px);
}
.plate--tall { aspect-ratio: 3 / 4; }
.plate--wide { aspect-ratio: 4 / 3; }
.plate--a { background: linear-gradient(165deg, #6f8461 0%, #3f4d36 55%, #2a3325 100%); }
.plate--b { background: linear-gradient(150deg, #c9c0a8 0%, #98a687 50%, #55643f 100%); }
.plate--c { background: linear-gradient(200deg, #8a9c7c 0%, #5c6d4e 60%, #333d2b 100%); }
.plate--d { background: linear-gradient(135deg, #d8cfb8 0%, #b5a98c 45%, #7c8768 100%); }
.plate__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.4rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(35, 42, 32, 0.72));
  color: #fff; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
}

/* --- bands --------------------------------------------------------------- */
.band { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.band--stone { background: var(--stone); }
.band--olive { background: var(--olive-900); color: var(--sage-pale); }
.band--olive h2, .band--olive h3 { color: #fff; }
.band--olive .eyebrow { color: var(--sage); }
.band__head { max-width: 58ch; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.band__head p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1rem; }
.band--olive .band__head p { color: var(--sage-pale); }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* --- services ------------------------------------------------------------ */
.svc-list { display: grid; gap: 0; }
.svc {
  display: grid; gap: 0.6rem 2.5rem; padding: 2.1rem 0;
  border-top: 1px solid var(--line); align-items: start;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 780px) { .svc { grid-template-columns: 0.5fr 1fr 0.9fr; } }
.svc__no {
  font-family: var(--display); font-size: 2.1rem; color: var(--olive-400); line-height: 1;
}
.svc h3 { margin-bottom: 0.3rem; }
.svc p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.tag {
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: var(--sage-pale); color: var(--olive-600);
}

/* --- process ------------------------------------------------------------- */
.steps { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 2.6rem; }
.step__no {
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.16em;
  color: var(--sage); text-transform: uppercase; font-weight: 700;
}
.step h3 { font-size: 1.28rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; margin: 0; }

/* --- reviews ------------------------------------------------------------- */
.quote-grid { display: grid; gap: 2.5rem; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.quote { border-left: 2px solid var(--sage); padding-left: 1.6rem; }
.quote__stars { color: var(--clay); letter-spacing: 0.14em; font-size: 0.9rem; margin-bottom: 0.9rem; }
.quote p {
  font-family: var(--display); font-size: 1.34rem; line-height: 1.48;
  color: var(--olive-900); font-style: italic;
}
.band--olive .quote p { color: #fff; }
.quote__by { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--olive-400); margin: 0; }

/* --- about --------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(2.2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 880px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* --- contact ------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2.2rem, 5vw, 4rem); }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 0.85fr 1.15fr; } }
.field { display: block; margin-bottom: 1.15rem; }
.field span {
  display: block; font-size: 0.71rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-soft); margin-bottom: 0.45rem;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85rem 0; font: inherit; font-size: 1rem; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-bottom-color: var(--olive-600);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note {
  display: none; margin-top: 1.2rem; padding: 1rem 1.2rem;
  background: var(--sage-pale); border-left: 2px solid var(--olive-600);
  color: var(--olive-800); font-size: 0.93rem;
}
.form-note.is-visible { display: block; }
.contact-list { list-style: none; margin: 1.8rem 0 0; padding: 0; display: grid; gap: 1.3rem; }
.contact-list dt {
  font-size: 0.71rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--olive-400); margin-bottom: 0.25rem;
}
.contact-list dd { margin: 0; font-size: 1.03rem; }
.contact-list a { color: var(--olive-800); text-decoration: none; border-bottom: 1px solid var(--sage); }
.contact-list a:hover { border-bottom-color: var(--olive-800); }

/* --- footer -------------------------------------------------------------- */
.site-footer { background: var(--olive-900); color: var(--sage); padding: 3.5rem 0 5.5rem; font-size: 0.9rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer h4 {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; margin: 0 0 0.9rem; font-weight: 700; font-family: var(--body);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: var(--sage); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.5rem; justify-content: space-between; font-size: 0.81rem;
}

.mobile-cta { display: none; }

@media (max-width: 860px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 0.5rem 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.9rem var(--gutter); border-bottom: 0; }
  .header-inner .btn { display: none; }
  .nav-toggle {
    display: grid; place-items: center; width: 42px; height: 42px;
    background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    content: ""; display: block; width: 17px; height: 1.5px; background: var(--olive-900); position: relative;
  }
  .nav-toggle span::before { position: absolute; top: -6px; }
  .nav-toggle span::after { position: absolute; top: 6px; }
  .mobile-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--olive-800); box-shadow: 0 -6px 24px rgba(35,42,32,0.28);
  }
  .mobile-cta a {
    display: block; text-align: center; padding: 1.05rem; color: var(--stone);
    text-decoration: none; font-size: 0.79rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
  }
}
