:root {
  --ink: #153328;
  --forest: #143c2d;
  --deep: #0e2b20;
  --sage: #7c9b78;
  --leaf: #9bb77e;
  --cream: #f6f2e8;
  --paper: #fbfaf5;
  --terracotta: #c87955;
  --line: rgba(21, 51, 40, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

button, input { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { border-radius: 13px; box-shadow: 0 7px 24px rgba(21, 51, 40, .12); }
.brand span { display: grid; gap: 2px; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; letter-spacing: -.02em; }
.brand small { color: #65766d; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.header-link {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding: 6px 0;
}
.header-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 700; }
.header-nav > a:not(.header-link) { color: #5c7066; }
.header-nav > a:not(.header-link):hover { color: var(--ink); }

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 32px auto 76px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.hero-copy { padding: 30px 0; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 800;
  color: #5b7567;
}
.eyebrow span { width: 24px; height: 1px; background: var(--terracotta); }

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 18px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(52px, 5.2vw, 78px);
  line-height: .96;
  letter-spacing: -.055em;
}
h1 em { color: var(--terracotta); font-weight: 500; }

.hero-lede {
  max-width: 520px;
  color: #52655c;
  font-size: 17px;
  line-height: 1.7;
}

.store-row { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.store-button {
  min-width: 166px;
  min-height: 58px;
  border-radius: 16px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.store-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21, 51, 40, .16); }
.store-button span:not(.store-symbol):not(.play-symbol) { display: grid; text-align: left; line-height: 1.05; }
.store-button small { font-size: 9px; letter-spacing: .05em; }
.store-button strong { font-size: 17px; margin-top: 3px; }
.store-symbol { font-size: 23px; line-height: 1; }
.play-symbol { color: #b5d49b; font-size: 22px; }
.store-button.primary { background: var(--forest); color: white; }
.store-button.secondary { border: 1px solid var(--line); background: #fff; }

.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 26px; color: #607168; font-size: 12px; }
.trust-row i { font-style: normal; color: var(--terracotta); margin-right: 4px; }

.comparison-shell { position: relative; }
.comparison {
  --reveal: 54%;
  position: relative;
  aspect-ratio: 4 / 4.55;
  overflow: hidden;
  border-radius: 28px 28px 120px 28px;
  box-shadow: 0 28px 70px rgba(20, 60, 45, .2);
  background: #d9d6c8;
  isolation: isolate;
}
.comparison-layer { position: absolute; inset: 0; background-image: url("assets/garden-before-after.png"); background-repeat: no-repeat; background-size: 200% 100%; }
.comparison-layer.before { background-position: left center; }
.comparison-layer.after { background-position: right center; clip-path: inset(0 calc(100% - var(--reveal)) 0 0); }
.comparison::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(8, 26, 19, .22));
  pointer-events: none;
  z-index: 3;
}
.image-label {
  position: absolute;
  top: 18px;
  z-index: 5;
  color: #fff;
  background: rgba(11, 35, 26, .6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}
.before-label { left: 18px; }
.after-label { right: 18px; }
.comparison-line { position: absolute; top: 0; bottom: 0; left: var(--reveal); width: 2px; background: white; transform: translateX(-1px); z-index: 6; box-shadow: 0 0 20px rgba(0, 0, 0, .2); }
.comparison-line span { position: absolute; top: 50%; left: 50%; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--forest); transform: translate(-50%, -50%); font-weight: 900; letter-spacing: 5px; padding-left: 4px; box-shadow: 0 10px 30px rgba(0, 0, 0, .22); }
.comparison-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 10; }
.drag-hint { position: absolute; right: 18px; bottom: 16px; z-index: 12; color: white; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; pointer-events: none; }
.drag-hint span { margin-right: 5px; }

.promise-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 23px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, .52);
}
.promise-strip p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 17px; text-align: center; }
.promise-strip p + p { border-left: 1px solid var(--line); }

.styles-section, .how-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 44px; }
.section-heading h2, .how-intro h2, .closing-section h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(38px, 4.2vw, 58px); letter-spacing: -.04em; line-height: 1.04; margin: 14px 0 0; }
.section-heading > p, .how-intro > p { color: #617269; line-height: 1.7; margin-bottom: 3px; }

.style-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.style-card { min-height: 420px; position: relative; overflow: hidden; border-radius: 24px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; color: white; background-image: linear-gradient(180deg, rgba(8, 30, 21, .04), rgba(8, 30, 21, .76)), url("assets/garden-before-after.png"); background-size: 200% 100%; background-position: right center; box-shadow: 0 12px 34px rgba(20, 60, 45, .1); }
.style-card.cottage { filter: saturate(1.12) contrast(.94); background-position: 90% center; }
.style-card.zen { filter: saturate(.58) contrast(1.06); background-position: 100% center; }
.style-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 48%, rgba(201, 121, 85, .13)); }
.style-card > * { position: relative; z-index: 1; }
.style-index { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; font-size: 11px; }
.style-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 30px; font-weight: 500; margin-bottom: 8px; }
.style-card p { margin: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; opacity: .84; }

.idea-index { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 18px 0 108px; }
.idea-index .section-heading { border-top: 1px solid var(--line); padding-top: 78px; }
.idea-index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.idea-index-card { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border-radius: 24px; color: white; overflow: hidden; position: relative; background-image: linear-gradient(180deg, rgba(8, 30, 21, .05), rgba(8, 30, 21, .84)), url("assets/garden-before-after.png"); background-size: 200% 100%; box-shadow: 0 12px 34px rgba(20, 60, 45, .1); transition: transform .2s ease, box-shadow .2s ease; }
.idea-index-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px rgba(20, 60, 45, .18); }
.idea-index-card.small-yard { background-position: right center; }
.idea-index-card.easy-care { background-position: 89% center; filter: saturate(.95); }
.idea-index-card.zen-guide { background-position: 100% center; filter: saturate(.62) contrast(1.05); }
.idea-index-card.shade-guide { background-image: linear-gradient(180deg, rgba(8, 30, 21, .05), rgba(8, 30, 21, .84)), url("assets/seo/shade-garden-layout.jpg"); background-position: center 38%; background-size: cover; }
.idea-index-card.modern-guide { background-image: linear-gradient(180deg, rgba(8, 30, 21, .05), rgba(8, 30, 21, .84)), url("assets/seo/modern-garden-before-after.jpg"); background-position: 78% center; background-size: cover; }
.idea-index-card.patio-guide { background-image: linear-gradient(180deg, rgba(8, 30, 21, .05), rgba(8, 30, 21, .84)), url("assets/seo/patio-makeover-before-after.jpg"); background-position: 78% center; background-size: cover; }
.idea-index-card > * { position: relative; z-index: 1; }
.idea-index-card span, .related-grid span { color: #d2e2c9; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.idea-index-card h3 { font: 500 30px/1.03 Georgia, serif; margin: 12px 0 10px; letter-spacing: -.025em; }
.idea-index-card p { margin: 0; max-width: 260px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,.8); }
.idea-index-card b { display: inline-flex; gap: 8px; margin-top: 20px; font-size: 12px; }
.idea-index-card i { font-style: normal; color: var(--leaf); }

.how-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: start; border-top: 1px solid var(--line); }
.how-intro { position: sticky; top: 36px; }
.how-intro h2 { margin-bottom: 22px; }
.steps-list { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.step > span { color: var(--terracotta); font: 500 14px Georgia, serif; }
.step h3 { font: 500 26px Georgia, serif; margin-bottom: 10px; }
.step p { margin: 0; color: #617269; line-height: 1.65; max-width: 490px; }

.closing-section { background: var(--deep); color: white; text-align: center; padding: 110px 20px 104px; position: relative; overflow: hidden; }
.closing-section::before { content: ""; position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%, -45%); }
.closing-section > * { position: relative; z-index: 1; }
.section-kicker.light { color: #b7c9b4; }
.closing-section h2 { max-width: 720px; margin: 18px auto; }
.closing-section > p { color: #b7c9bf; max-width: 620px; margin: 0 auto; line-height: 1.7; }
.centered { justify-content: center; }
.store-button.light { background: var(--cream); color: var(--deep); }
.store-button.outline { border: 1px solid rgba(255,255,255,.3); color: white; }
.concept-note { display: block; max-width: 660px; margin: 28px auto 0; color: #82988d; font-size: 10px; line-height: 1.5; }
.closing-mark { display: flex; justify-content: center; align-items: end; height: 42px; margin-bottom: 26px; gap: 3px; }
.closing-mark span { width: 18px; height: 32px; border-radius: 100% 0 100% 0; background: var(--leaf); transform: rotate(-28deg); transform-origin: bottom right; }
.closing-mark span:nth-child(2) { height: 42px; background: var(--terracotta); transform: rotate(0); border-radius: 100% 100% 20% 20%; }
.closing-mark span:nth-child(3) { transform: scaleX(-1) rotate(-28deg); transform-origin: bottom left; }

footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand strong { font-size: 17px; }
.footer-brand small { font-size: 8px; }
footer p { margin: 0; color: #66786f; font-size: 11px; }
footer a { text-decoration: underline; text-underline-offset: 3px; }

.seo-header { border-bottom: 1px solid var(--line); }
.breadcrumbs { width: min(1100px, calc(100% - 40px)); margin: 24px auto 0; display: flex; gap: 9px; align-items: center; color: #697a71; font-size: 12px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.reviewed { color: #73827b; font-size: 12px; }
.case-hero, .case-section, .related-section { width: min(1100px, calc(100% - 40px)); margin-left: auto; margin-right: auto; }
.case-hero { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; padding: 74px 0 96px; }
.case-copy h1 { font-size: clamp(46px, 5vw, 68px); margin-bottom: 24px; }
.case-copy > p { color: #52655c; font-size: 17px; line-height: 1.75; }
.case-copy .case-disclosure { margin-top: 22px; padding-left: 14px; border-left: 2px solid var(--terracotta); font-size: 13px; color: #64766d; }
.case-figure { margin: 0; }
.case-figure img { display: block; width: 100%; border-radius: 22px; box-shadow: 0 24px 60px rgba(20, 60, 45, .18); }
.case-figure figcaption { margin-top: 12px; color: #65766d; font-size: 11px; line-height: 1.55; }
.case-section { padding: 84px 0; border-top: 1px solid var(--line); }
.case-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.case-grid h2, .split-note h2, .faq-section h2 { margin: 14px 0 0; font: 500 clamp(38px, 4vw, 54px)/1.04 Georgia, serif; letter-spacing: -.04em; }
.idea-list { border-top: 1px solid var(--line); }
.idea-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.idea-list article > span { color: var(--terracotta); font: 500 14px Georgia, serif; }
.idea-list h3 { margin-bottom: 9px; font: 500 25px Georgia, serif; }
.idea-list p, .split-note p { margin: 0; color: #617269; line-height: 1.72; }
.split-note { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; background: var(--cream); width: 100%; padding: 84px max(20px, calc((100vw - 1100px) / 2)); }
.split-note > * { max-width: 510px; }
.split-note p + p { margin-top: 22px; }
.faq-section { padding-bottom: 90px; }
.faq-section > .section-kicker { margin-bottom: 2px; }
.faq-section h2 { margin-bottom: 34px; }
.faq-section details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { cursor: pointer; list-style: none; padding-right: 30px; position: relative; font: 500 22px Georgia, serif; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-section summary::after { content: "+"; position: absolute; right: 0; top: -4px; color: var(--terracotta); font: 500 28px Georgia, serif; }
.faq-section details[open] summary::after { content: "−"; }
.faq-section details p { max-width: 760px; margin: 14px 0 0; color: #617269; line-height: 1.7; }
.related-section { padding: 78px 0 98px; border-top: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.related-grid a { min-height: 190px; padding: 24px; border-radius: 20px; color: white; background: var(--forest); display: flex; flex-direction: column; justify-content: end; transition: transform .2s ease, background .2s ease; }
.related-grid a:nth-child(2) { background: #7a614e; }
.related-grid a:nth-child(3) { background: #456a55; }
.related-grid a:hover { transform: translateY(-3px); background: var(--deep); }
.related-grid strong { margin: 12px 0 9px; font: 500 29px/1.05 Georgia, serif; }
.related-grid em { color: rgba(255,255,255,.77); font-style: normal; font-size: 13px; line-height: 1.55; }
.case-closing { padding-top: 94px; }

.guide-hero { width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 86px 0 78px; text-align: center; }
.guide-hero h1 { font-size: clamp(50px, 6.4vw, 78px); max-width: 860px; margin-left: auto; margin-right: auto; }
.guide-hero > p:not(.reviewed) { max-width: 760px; margin: 0 auto 20px; color: #52655c; font-size: 17px; line-height: 1.75; }
.guide-library { width: min(1100px, calc(100% - 40px)); margin: 0 auto; padding: 84px 0 96px; border-top: 1px solid var(--line); }
.guide-library-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px 80px; align-items: end; margin-bottom: 38px; }
.guide-library-heading .section-kicker { grid-column: 1 / -1; }
.guide-library-heading h2 { margin: 0; font: 500 clamp(38px, 4vw, 54px)/1.04 Georgia, serif; letter-spacing: -.04em; }
.guide-library-heading p { margin: 0; color: #617269; line-height: 1.72; }
.guide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.guide-list article { min-width: 0; }
.guide-list a { min-height: 330px; height: 100%; padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: #fff; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.guide-list a:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(20, 60, 45, .12); }
.guide-list span { color: #6c8275; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.guide-list h3 { margin: 34px 0 14px; font: 500 30px/1.06 Georgia, serif; }
.guide-list p { color: #617269; font-size: 14px; line-height: 1.65; }
.guide-list b { margin-top: auto; padding-top: 24px; font-size: 12px; }
.guide-list i { color: var(--terracotta); font-style: normal; }
.planning-checklist { display: grid; grid-template-columns: .72fr 1.28fr; gap: 84px; }
.planning-checklist h2 { margin: 14px 0 0; font: 500 clamp(38px, 4vw, 54px)/1.04 Georgia, serif; letter-spacing: -.04em; }
.checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checklist-grid article { padding: 24px; border-radius: 18px; background: var(--cream); }
.checklist-grid span { color: var(--terracotta); font: 500 13px Georgia, serif; }
.checklist-grid h3 { margin: 28px 0 10px; font: 500 23px Georgia, serif; }
.checklist-grid p { margin: 0; color: #617269; font-size: 13px; line-height: 1.65; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 34px; margin-top: 8px; }
  .hero-copy { padding-bottom: 0; }
  .comparison { aspect-ratio: 1 / 1.08; border-radius: 24px 24px 80px 24px; }
  .section-heading, .how-section { grid-template-columns: 1fr; gap: 36px; }
  .how-intro { position: static; }
  .style-card { min-height: 350px; }
  .idea-index-grid { grid-template-columns: 1fr; }
  .case-hero, .case-grid, .split-note { grid-template-columns: 1fr; gap: 40px; }
  .guide-library-heading, .planning-checklist { grid-template-columns: 1fr; }
  .guide-list { grid-template-columns: 1fr; }
  .split-note { width: 100%; padding: 74px max(20px, calc((100vw - 1100px) / 2)); }
}

@media (max-width: 680px) {
  .site-header { width: min(100% - 28px, 1180px); height: 72px; }
  .brand small { display: none; }
  .header-link { font-size: 12px; }
  .header-nav { gap: 12px; }
  .header-nav > a:not(.header-link) { display: none; }
  .hero, .styles-section, .how-section, footer { width: min(100% - 28px, 1180px); }
  .hero { margin-bottom: 54px; }
  h1 { font-size: 48px; }
  .hero-lede { font-size: 15px; }
  .store-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .store-button { min-width: 0; padding-inline: 10px; }
  .store-button strong { font-size: 14px; }
  .trust-row { gap: 10px 14px; }
  .promise-strip { grid-template-columns: 1fr; gap: 0; padding: 12px 28px; }
  .promise-strip p { padding: 14px 0; font-size: 15px; }
  .promise-strip p + p { border-left: 0; border-top: 1px solid var(--line); }
  .styles-section, .how-section { padding: 78px 0; }
  .section-heading { margin-bottom: 28px; }
  .style-grid { grid-template-columns: 1fr; }
  .style-card { min-height: 380px; }
  .idea-index { width: min(100% - 28px, 1180px); padding-bottom: 78px; }
  .idea-index .section-heading { padding-top: 62px; }
  .idea-index-card { min-height: 270px; }
  .case-hero, .case-section, .related-section { width: min(100% - 28px, 1100px); }
  .breadcrumbs { width: min(100% - 28px, 1100px); }
  .case-hero { padding: 44px 0 64px; gap: 32px; }
  .case-copy h1 { font-size: 46px; }
  .case-copy > p { font-size: 15px; }
  .case-section { padding: 64px 0; }
  .case-grid h2, .split-note h2, .faq-section h2 { font-size: 38px; }
  .split-note { padding: 64px 28px; }
  .idea-list article { grid-template-columns: 42px 1fr; }
  .idea-list h3 { font-size: 23px; }
  .related-grid { grid-template-columns: 1fr; }
  .guide-hero { width: min(100% - 28px, 920px); padding: 58px 0 60px; }
  .guide-hero h1 { font-size: 47px; }
  .guide-hero > p:not(.reviewed) { font-size: 15px; }
  .guide-library { width: min(100% - 28px, 1100px); padding: 64px 0 72px; }
  .guide-library-heading { gap: 20px; }
  .guide-list a { min-height: 280px; }
  .planning-checklist { gap: 38px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .related-section { padding: 62px 0 72px; }
  .case-closing { padding-top: 78px; }
  .how-section { gap: 48px; }
  .step { grid-template-columns: 48px 1fr; }
  .closing-section { padding: 82px 14px 76px; }
  .closing-section .store-row { max-width: 440px; margin-left: auto; margin-right: auto; }
  footer { align-items: flex-start; }
  footer p { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .store-button { transition: none; }
}
