/* =========================================================================
   Ryan Conway Landscaping — Coastal Editorial
   A refined, magazine-style system inspired by Nantucket's gray-shingle,
   hydrangea-lined restraint. Deep boxwood green + warm bone paper, with a
   muted hydrangea-blue accent used sparingly.
   ========================================================================= */

:root {
  /* Palette */
  --ink:        #1b231d;   /* near-black green, body text */
  --pine:       #21392c;   /* deep boxwood — primary brand */
  --pine-deep:  #182a20;
  --moss:       #46624c;
  --sage:       #8aa088;
  --hydrangea:  #5d7e9e;   /* Nantucket hydrangea blue — sharp accent */
  --hydrangea-d:#42627f;
  --sand:       #c4a980;   /* warm shingle-sand */
  --sand-soft:  #ddc9a6;
  --bone:       #f4efe4;   /* warm paper background */
  --bone-deep:  #ebe3d3;
  --linen:      #e6ddca;
  --cream:      #fbf8f1;   /* cards */
  --white:      #ffffff;
  --rule:       rgba(27, 35, 29, 0.14);
  --rule-soft:  rgba(27, 35, 29, 0.08);
  --shadow:     0 1px 2px rgba(24,42,32,.04), 0 8px 30px rgba(24,42,32,.07);
  --shadow-lg:  0 2px 6px rgba(24,42,32,.05), 0 24px 60px rgba(24,42,32,.13);

  /* Type */
  --display: "Fraunces", "Hoefler Text", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, sans-serif;

  /* Rhythm */
  --maxw: 1240px;
  --gut: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(4.5rem, 9vw, 9rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* Subtle paper grain over everything */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--pine-deep);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.9rem, 7vw, 6.25rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.06; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
h4 { font-size: 1.18rem; letter-spacing: 0; }
p { max-width: 66ch; }
em, .italic { font-style: italic; }
strong { font-weight: 600; }

.eyebrow {
  font-family: var(--body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 1.9rem; height: 1px;
  background: var(--sand);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section); }
.lede { font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.5; color: var(--moss); font-weight: 380; max-width: 60ch; }
.center { text-align: center; }
.center .lede, .center p { margin-inline: auto; }
.muted { color: var(--moss); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 1.02em 1.7em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--pine); color: var(--bone); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--pine-deep); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--pine); background: rgba(33,57,44,.04); transform: translateY(-2px); }
.btn-accent { background: var(--hydrangea); color: #fff; }
.btn-accent:hover { background: var(--hydrangea-d); transform: translateY(-2px); }
.btn-light { background: var(--bone); color: var(--pine-deep); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .95rem; color: var(--pine);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: gap .25s, color .25s, border-color .25s;
}
.textlink:hover { gap: .85em; color: var(--pine-deep); border-color: var(--sand); }
.textlink svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--pine-deep);
  color: rgba(244,239,228,.85);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .6rem; }
.topbar a { color: inherit; }
.topbar .tb-tags { display: flex; gap: 1.4rem; }
.topbar .tb-tags span { display: inline-flex; align-items: center; gap: .45em; }
.topbar .tb-tags svg { width: .9em; height: .9em; opacity: .8; }
.topbar .tb-phone { font-weight: 600; color: var(--sand-soft); display: inline-flex; align-items: center; gap: .45em; }
.topbar .tb-phone:hover { color: #fff; }
@media (max-width: 760px){ .topbar .tb-tags span:nth-child(n+2){ display:none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,228,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(24,42,32,.08); background: rgba(244,239,228,.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 1.05rem; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand svg { height: 40px; width: auto; }
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--display); font-size: 1.32rem; color: var(--pine-deep); letter-spacing: -.01em; }
.brand .brand-sub { font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--moss); margin-top: .28em; }

.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links > li { position: relative; }
.nav-links a.navlink {
  display: inline-block; padding: .6rem .85rem; border-radius: 8px;
  font-size: .93rem; font-weight: 500; color: var(--ink);
  transition: color .2s, background .2s;
}
.nav-links a.navlink:hover, .nav-links a.navlink[aria-current="page"] { color: var(--pine); background: rgba(33,57,44,.05); }
.has-menu > a::after { content: "⌄"; font-size: .8em; margin-left: .35em; opacity: .55; position: relative; top: -2px; }

.submenu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--cream);
  border: 1px solid var(--rule-soft);
  border-radius: 14px;
  padding: .55rem;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.has-menu:hover .submenu, .has-menu:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: flex; flex-direction: column; gap: .12rem; padding: .62rem .8rem; border-radius: 9px; transition: background .18s; }
.submenu a:hover { background: rgba(33,57,44,.06); }
.submenu a strong { font-weight: 600; font-size: .92rem; color: var(--pine-deep); }
.submenu a span { font-size: .76rem; color: var(--moss); }

.nav-cta { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.nav-phone { font-weight: 600; font-size: .95rem; color: var(--pine-deep); display: inline-flex; align-items: center; gap: .45em; }
.nav-phone svg { width: 1em; height: 1em; color: var(--hydrangea); }
.nav-phone:hover { color: var(--hydrangea-d); }

.burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--rule); border-radius: 10px; }
.burger span { width: 20px; height: 1.6px; background: var(--pine-deep); transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.6px) rotate(-45deg); }

@media (max-width: 1000px){
  .nav-links, .nav-cta .nav-phone { display: none; }
  .burger { display: flex; }
  .mobile-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: .1rem;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gut) 1.6rem; box-shadow: var(--shadow-lg);
  }
  .mobile-open .nav-links a.navlink { padding: .8rem .4rem; font-size: 1.05rem; }
  .mobile-open .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0 0 .4rem 1rem; min-width: 0;
  }
  .mobile-open .submenu a { padding: .5rem .4rem; }
  .has-menu > a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(3rem, 6vw, 5.5rem); padding-bottom: clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero-copy h1 { margin-bottom: 1.4rem; }
.hero-copy h1 .accent { font-style: italic; color: var(--moss); }
.hero-copy .lede { margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero-art { position: relative; }
.hero-art .frame { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--rule-soft); }
.hero-art .frame { aspect-ratio: 4/3; position: relative; }
.hero-art .frame svg, .hero-art .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--cream); border: 1px solid var(--rule-soft);
  border-radius: 16px; padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .85rem;
}
.hero-badge .num { font-family: var(--display); font-size: 2.4rem; color: var(--pine); line-height: 1; }
.hero-badge .lbl { font-size: .78rem; line-height: 1.3; color: var(--moss); }
@media (max-width: 880px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 560px; }
  .hero-badge { left: auto; right: -8px; }
}

/* ---------- Trust strip ---------- */
.trust { background: var(--pine-deep); color: var(--bone); }
.trust .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: 2.4rem; }
.trust .item { text-align: center; }
.trust .item .k { font-family: var(--display); font-size: 2.2rem; color: var(--sand-soft); line-height: 1; }
.trust .item .v { font-size: .82rem; letter-spacing: .04em; color: rgba(244,239,228,.78); margin-top: .5rem; }
@media (max-width: 700px){ .trust .wrap { grid-template-columns: repeat(2,1fr); gap: 2rem; } }

/* ---------- Generic section bits ---------- */
.section-head { max-width: 60ch; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: .8rem 0 1rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 2.4rem; } }

.bg-cream { background: var(--cream); }
.bg-bone-deep { background: var(--bone-deep); }
.bg-pine { background: var(--pine); color: var(--bone); }
.bg-pine h2, .bg-pine h3 { color: var(--bone); }
.bg-pine .lede, .bg-pine p { color: rgba(244,239,228,.82); }
.bg-pine .eyebrow { color: var(--sand-soft); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
@media (max-width: 900px){ .cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .cards { grid-template-columns: 1fr; } }
.card {
  background: var(--cream); border: 1px solid var(--rule-soft); border-radius: 16px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--rule); }
.card .card-img { aspect-ratio: 16/11; position: relative; overflow: hidden; background: var(--linen); }
.card .card-img svg, .card .card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card .card-body { padding: 1.5rem 1.55rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card .card-icon { color: var(--hydrangea); margin-bottom: .9rem; }
.card .card-icon svg { width: 2rem; height: 2rem; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .96rem; color: var(--moss); flex: 1; margin-bottom: 1.1rem; }

/* ---------- Image frame placeholders ---------- */
.imgframe {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--linen); border: 1px solid var(--rule-soft); box-shadow: var(--shadow);
}
.imgframe svg, .imgframe img { width: 100%; height: auto; display: block; }
.imgframe.cover svg, .imgframe.cover img,
.gallery .imgframe svg, .gallery .imgframe img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.imgframe .tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(27,35,29,.72); color: var(--bone);
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .4em .8em; border-radius: 100px; backdrop-filter: blur(4px);
}

/* ---------- Feature list ---------- */
.checklist { display: grid; gap: .85rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1rem; color: var(--ink); }
.checklist li svg { flex-shrink: 0; width: 1.35rem; height: 1.35rem; color: var(--hydrangea); margin-top: .15rem; }
.checklist.two { grid-template-columns: 1fr 1fr; gap: .85rem 1.6rem; }
@media (max-width: 620px){ .checklist.two { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--display); font-size: 1.5rem; color: var(--sand);
  border-top: 2px solid var(--sand); padding-top: .5rem; width: 100%;
}
.step h4 { color: var(--pine-deep); margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--moss); }
.bg-pine .step::before { color: var(--sand-soft); border-color: rgba(196,169,128,.5); }
.bg-pine .step h4 { color: var(--bone); }
.bg-pine .step p { color: rgba(244,239,228,.72); }

/* ---------- Areas ---------- */
.area-grid { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.area-chip {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 100px; padding: .6em 1.15em; font-size: .92rem; font-weight: 500;
  color: var(--pine-deep); transition: background .2s, color .2s, transform .2s;
}
.area-chip:hover { background: var(--pine); color: var(--bone); transform: translateY(-2px); }
.bg-pine .area-chip { background: rgba(244,239,228,.08); border-color: rgba(244,239,228,.18); color: var(--bone); }
.bg-pine .area-chip:hover { background: var(--sand); color: var(--pine-deep); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery .imgframe:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.gallery .imgframe:nth-child(4){ grid-row: span 2; }
@media (max-width: 820px){
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 170px; }
  .gallery .imgframe:nth-child(1){ grid-column: span 2; grid-row: span 1; }
  .gallery .imgframe:nth-child(4){ grid-row: span 1; }
}

/* ---------- Testimonial ---------- */
.quote { max-width: 30ch; }
.quote .stars { color: var(--sand); letter-spacing: .15em; font-size: 1.2rem; margin-bottom: 1.2rem; }
.quote blockquote { font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.3rem); line-height: 1.28; color: var(--pine-deep); max-width: 22ch; }
.bg-pine .quote blockquote { color: var(--bone); }
.quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-size: .9rem; letter-spacing: .04em; color: var(--moss); }
.bg-pine .quote cite { color: var(--sand-soft); }

/* ---------- Offer banner ---------- */
.offer {
  background: linear-gradient(135deg, var(--sand-soft) 0%, var(--sand) 100%);
  color: var(--pine-deep); border: 1px solid rgba(33,57,44,.14);
  border-radius: 20px; padding: clamp(2.2rem, 5vw, 3.6rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.offer::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.4), transparent 70%); border-radius: 50%;
}
.offer h3 { color: var(--pine-deep); font-size: clamp(1.6rem, 3vw, 2.4rem); max-width: 18ch; }
.offer p { color: rgba(24,42,32,.82); margin-top: .6rem; max-width: 46ch; }
.offer .offer-r { display: flex; flex-direction: column; gap: .9rem; position: relative; z-index: 1; }
.offer-ghost { border-color: rgba(33,57,44,.32); color: var(--pine-deep); }
.offer-ghost:hover { border-color: var(--pine); background: rgba(33,57,44,.06); }

/* ---------- CTA ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin: 1rem auto 1.2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-deep); color: rgba(244,239,228,.72); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--sand-soft); font-family: var(--body); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer .brand .brand-name { color: var(--bone); }
.site-footer .brand .brand-sub { color: var(--sage); }
.footer-about p { font-size: .92rem; line-height: 1.7; margin: 1.2rem 0 1.4rem; max-width: 34ch; }
.footer-links li { margin-bottom: .7rem; }
.footer-links a { font-size: .93rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--bone); padding-left: 4px; }
.footer-contact a, .footer-contact p { font-size: .93rem; display: block; margin-bottom: .8rem; line-height: 1.5; }
.footer-contact a:hover { color: var(--bone); }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(244,239,228,.2);
  display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s;
}
.footer-social a:hover { background: var(--sand); border-color: var(--sand); transform: translateY(-2px); }
.footer-social a:hover svg { color: var(--pine-deep); }
.footer-social svg { width: 18px; height: 18px; color: var(--bone); }
.footer-bottom { border-top: 1px solid rgba(244,239,228,.12); padding-block: 1.6rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: rgba(244,239,228,.5); }
.footer-bottom a:hover { color: var(--bone); }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(3rem,5vw,4.5rem); padding-bottom: clamp(2rem,4vw,3rem); }
.crumbs { font-size: .8rem; letter-spacing: .04em; color: var(--moss); margin-bottom: 1.5rem; }
.crumbs a:hover { color: var(--pine); }
.crumbs span { opacity: .5; margin: 0 .5em; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); max-width: 16ch; margin-bottom: 1.2rem; }
.page-hero .lede { max-width: 62ch; }

/* ---------- Prose (service/about pages) ---------- */
.prose h2 { margin: 2.6rem 0 1rem; }
.prose h3 { margin: 2rem 0 .8rem; color: var(--pine); }
.prose p { margin-bottom: 1.1rem; color: var(--ink); }
.prose p + h2 { margin-top: 2.8rem; }
.prose ul:not(.checklist):not(.area-grid) { margin: 1rem 0 1.4rem; display: grid; gap: .7rem; }
.prose ul:not(.checklist):not(.area-grid) li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.prose ul:not(.checklist):not(.area-grid) li::before { content: ""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--sand); }

.sidebar-grid { display: grid; grid-template-columns: 1.7fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 900px){ .sidebar-grid { grid-template-columns: 1fr; } }
.sidebar { position: sticky; top: 110px; display: grid; gap: 1.4rem; }
.sidebar .panel { background: var(--cream); border: 1px solid var(--rule-soft); border-radius: 16px; padding: 1.6rem; box-shadow: var(--shadow); }
.sidebar .panel h4 { color: var(--pine-deep); margin-bottom: 1rem; font-size: 1.15rem; }
.sidebar .panel.dark { background: var(--pine); color: var(--bone); }
.sidebar .panel.dark h4 { color: var(--bone); }
.sidebar .panel.dark p { color: rgba(244,239,228,.82); font-size: .92rem; margin-bottom: 1.2rem; }
.sidebar .svc-list li a { display: block; padding: .55rem 0; border-bottom: 1px solid var(--rule-soft); font-size: .95rem; transition: color .2s, padding .2s; }
.sidebar .svc-list li:last-child a { border-bottom: none; }
.sidebar .svc-list li a:hover { color: var(--hydrangea-d); padding-left: 5px; }
.sidebar .svc-list li a[aria-current] { color: var(--pine); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1.15rem; display: flex; flex-direction: column; gap: .45rem; }
.form-field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--pine-deep); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 1rem; padding: .85rem 1rem;
  border: 1px solid rgba(27,35,29,.55); border-radius: 11px; background: var(--cream); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--hydrangea); box-shadow: 0 0 0 3px rgba(93,126,158,.15);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
@media (max-width: 520px){ .form-row { grid-template-columns: 1fr; } }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-detail .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(93,126,158,.12); display: grid; place-items: center; flex-shrink: 0; }
.contact-detail .ico svg { width: 20px; height: 20px; color: var(--hydrangea-d); }
.contact-detail h4 { margin-bottom: .2rem; color: var(--pine-deep); }
.contact-detail a, .contact-detail p { font-size: .96rem; color: var(--moss); }
.contact-detail a:hover { color: var(--hydrangea-d); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- A11y ---------- */
.skip { position: absolute; left: -999px; top: 0; background: var(--pine); color: var(--bone); padding: .8rem 1.2rem; border-radius: 0 0 10px 0; z-index: 1000; }
.skip:focus { left: 0; }
.form-field ::placeholder { color: var(--moss); opacity: 1; }
:focus-visible { outline: 2px solid #5a86c0; outline-offset: 3px; border-radius: 3px; }
