:root {
  --ink: #173d2f;
  --forest: #214f3b;
  --leaf: #dce8b1;
  --cream: #f6f1e6;
  --paper: #fffdf7;
  --terracotta: #c96d43;
  --line: rgba(23, 61, 47, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.contact-bar { min-height: 36px; background: var(--forest); color: #fff; }
.contact-bar-inner { min-height: 36px; padding: 0 clamp(22px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 10px; letter-spacing: .05em; }
.contact-bar-inner > span { color: rgba(255,255,255,.68); }
.contact-bar-inner a { display: inline-flex; align-items: center; gap: 12px; }
.contact-bar-inner a span { text-transform: uppercase; color: var(--leaf); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.contact-bar-inner a strong { font-size: 12px; letter-spacing: .035em; }
.site-header {
  height: 82px; padding: 0 clamp(22px, 5vw, 76px); display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; background: var(--paper); border-bottom: 1px solid var(--line); position: relative; z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-weight: 800; letter-spacing: -.04em; font-size: 21px; }
.brand > span:last-child span { color: var(--terracotta); }
.brand-mark { width: 28px; height: 28px; border: 2px solid var(--forest); border-radius: 50%; position: relative; display: inline-block; }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ''; position: absolute; background: var(--forest); border-radius: 100% 0 100% 0; transform: rotate(45deg); }
.brand-mark::before { width: 8px; height: 13px; left: 9px; top: 1px; }
.brand-mark::after { width: 7px; height: 11px; left: 3px; top: 9px; transform: rotate(-10deg); }
.brand-mark span { width: 7px; height: 11px; right: 3px; top: 10px; transform: rotate(100deg); }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 46px); font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ''; position: absolute; height: 2px; left: 0; right: 100%; bottom: 4px; background: var(--terracotta); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.header-cta { display: inline-flex; align-items: center; gap: 16px; background: var(--forest); color: #fff; padding: 13px 17px; border-radius: 3px; font-size: 12px; font-weight: 800; }
.floating-phone { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: none; align-items: center; gap: 7px; padding: 12px 15px; border-radius: 999px; background: var(--terracotta); color: #fff; box-shadow: 0 10px 30px rgba(23,61,47,.25); font-size: 11px; letter-spacing: .025em; transition: transform .2s ease, box-shadow .2s ease; }
.floating-phone span:not(:first-child) { text-transform: uppercase; font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.floating-phone strong { font-size: 11px; }
.floating-phone:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(23,61,47,.32); }

.hero { min-height: min(760px, calc(100vh - 118px)); position: relative; overflow: hidden; color: #fff; display: flex; align-items: center; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { background: linear-gradient(90deg, rgba(12, 42, 30, .88) 0%, rgba(12, 42, 30, .57) 42%, rgba(12, 42, 30, .08) 75%); }
.hero-content { position: relative; z-index: 2; width: min(720px, 70%); padding: 82px clamp(22px, 8vw, 126px); }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .19em; font-size: 11px; font-weight: 800; }
.eyebrow { display: flex; align-items: center; gap: 11px; color: #eef6d2; margin-bottom: 26px; }
.eyebrow span { width: 28px; height: 1px; background: #eef6d2; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; letter-spacing: -.055em; font-weight: 400; margin: 0; }
h1 { font-size: clamp(54px, 7vw, 102px); line-height: .92; }
h1 em, h2 em { color: var(--leaf); font-weight: 400; }
.hero-copy { font-family: Georgia, 'Times New Roman', serif; max-width: 560px; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.55; margin: 28px 0 32px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 26px; padding: 17px 20px; border-radius: 3px; text-transform: uppercase; letter-spacing: .09em; font-size: 11px; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--leaf); color: var(--ink); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 13px; font-weight: 800; }
.button-dark { background: var(--forest); color: #fff; border: 1px solid var(--forest); }
.button-outline { color: var(--forest); border: 1px solid var(--forest); }
.button-call { border: 1px solid rgba(255,255,255,.65); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(6px); gap: 8px; }
.button-call strong { margin-left: 4px; font-size: 11px; }
.button-call:hover { background: rgba(255,255,255,.16); }
.hero-note { position: absolute; z-index: 3; right: 0; bottom: 0; display: flex; align-items: center; gap: 14px; background: var(--paper); color: var(--ink); padding: 19px clamp(24px, 4vw, 55px) 19px 26px; }
.hero-note small, .hero-note strong { display: block; }
.hero-note small { text-transform: uppercase; letter-spacing: .12em; font-size: 8px; font-weight: 800; margin-bottom: 4px; opacity: .65; }
.hero-note strong { font-family: Georgia, 'Times New Roman', serif; font-size: 14px; }
.sun-icon { color: var(--terracotta); font-size: 31px; }

.intro { background: var(--cream); padding: 100px clamp(22px, 8vw, 126px) 110px; }
.section-kicker { color: var(--terracotta); margin: 0 0 20px; }
.intro h2 { font-size: clamp(42px, 5.8vw, 78px); line-height: 1.02; }
.intro h2 em { color: #678051; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); margin-top: 70px; }
.intro-grid article { padding: 31px 34px 12px 0; }
.intro-grid article + article { border-left: 1px solid var(--line); padding-left: 34px; }
.intro-grid span { color: var(--terracotta); font: italic 15px Georgia, serif; }
.intro-grid h3 { font: 400 25px Georgia, serif; margin: 26px 0 10px; }
.intro-grid p { max-width: 330px; color: rgba(23,61,47,.72); font-size: 14px; line-height: 1.65; margin: 0; }

.feature-section { padding: 120px clamp(22px, 7vw, 108px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr); gap: clamp(58px, 8vw, 130px); align-items: center; background: var(--paper); }
.feature-image-wrap { min-height: 680px; position: relative; }
.feature-image-wrap img { width: 100%; height: 680px; object-fit: cover; }
.feature-image-wrap > p { margin: 0; position: absolute; right: -30px; bottom: 48px; width: 150px; height: 150px; border-radius: 50%; background: var(--terracotta); color: #fff; display: grid; place-content: center; text-align: center; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; line-height: 1.5; transform: rotate(-7deg); }
.feature-image-wrap > p span { display: block; font: italic 41px Georgia, serif; letter-spacing: -.04em; }
.feature-copy h2, .guides-section h2, .plant-section h2, .space-section h2, .newsletter-section h2, .story-copy h2 { font-size: clamp(44px, 5vw, 72px); line-height: 1.02; }
.feature-copy h2 em, .guides-section h2 em, .plant-section h2 em, .space-section h2 em, .story-copy h2 em { color: #678051; }
.feature-copy > p:not(.section-kicker) { max-width: 560px; font: 19px/1.65 Georgia, serif; color: rgba(23,61,47,.76); }
.feature-list { list-style: none; margin: 36px 0 40px; padding: 0; border-top: 1px solid var(--line); }
.feature-list li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--terracotta); font: italic 13px Georgia, serif; }
.feature-list strong { font: 400 20px Georgia, serif; }
.feature-list p { font-size: 13px; line-height: 1.55; margin: 6px 0 0; color: rgba(23,61,47,.67); }

.guides-section { padding: 110px clamp(22px, 7vw, 108px) 125px; background: var(--forest); color: #fff; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin-bottom: 60px; }
.section-heading-row > a { padding-bottom: 9px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }
.guides-section .section-kicker { color: var(--leaf); }
.guides-section h2 em { color: var(--leaf); }
.guide-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr; gap: 24px; }
.guide-card { min-height: 520px; background: var(--cream); color: var(--ink); overflow: hidden; }
.guide-card > a { display: flex; height: 100%; flex-direction: column; }
.guide-card img { width: 100%; height: 295px; object-fit: cover; transition: transform .5s ease; }
.guide-card-large img { height: 360px; }
.guide-card a:hover img { transform: scale(1.025); }
.guide-card-copy { padding: 24px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.guide-card-copy p, .text-card > a > p, .listing-card > a > div > p { text-transform: uppercase; color: var(--terracotta); letter-spacing: .13em; font-size: 9px; font-weight: 800; margin: 0 0 15px; }
.guide-card-copy h3, .text-card h3 { margin: 0; font: 400 clamp(24px, 2.5vw, 35px)/1.08 Georgia, serif; }
.guide-card-copy span, .text-card > a > span { margin-top: auto; padding-top: 28px; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.text-card { background: #dce8b1; }
.text-card > a { padding: 29px; }
.soil-rings { position: relative; height: 195px; margin: 16px 0; }
.soil-rings i { position: absolute; border: 1px solid rgba(23,61,47,.26); border-radius: 50%; }
.soil-rings i:nth-child(1) { width: 180px; height: 180px; left: 10px; top: 4px; }
.soil-rings i:nth-child(2) { width: 125px; height: 125px; left: 38px; top: 32px; }
.soil-rings i:nth-child(3) { width: 66px; height: 66px; left: 68px; top: 62px; background: var(--terracotta); border: 0; }

.plant-section { padding: 115px clamp(22px, 7vw, 108px); background: var(--cream); }
.plant-intro { max-width: 390px; font: 18px/1.6 Georgia, serif; color: rgba(23,61,47,.7); }
.plant-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-bottom: 42px; }
.plant-card { min-height: 410px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.plant-letter { flex: 1; display: grid; place-items: center; font: italic 180px/.8 Georgia, serif; opacity: .22; transform: rotate(-8deg); }
.plant-card p, .library-card > p { font: italic 12px Georgia, serif; margin: 0 0 5px; opacity: .7; }
.plant-card h3, .library-card h2 { font: 400 29px Georgia, serif; margin: 0; }
.plant-card .level { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.52); border: 1px solid rgba(23,61,47,.16); border-radius: 20px; padding: 6px 10px; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.coral { background: #e9b09a; }.sage { background: #c9d9b4; }.plum { background: #c9b4c3; }.gold { background: #e4ce91; }

.space-section { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--paper); }
.space-copy { padding: 110px clamp(35px, 7vw, 108px); background: var(--terracotta); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.space-copy .section-kicker { color: #fff1d8; }
.space-copy h2 em { color: #ffe1b7; }
.space-copy > p:last-child { max-width: 390px; font: 18px/1.6 Georgia, serif; color: rgba(255,255,255,.82); }
.space-options { display: flex; flex-direction: column; }
.space-options a { flex: 1; min-height: 185px; display: grid; grid-template-columns: 50px 1fr auto; align-items: center; gap: 24px; padding: 34px clamp(28px, 5vw, 75px); border-bottom: 1px solid var(--line); transition: background .2s ease; }
.space-options a:hover { background: var(--cream); }
.space-options a > span { font: italic 13px Georgia, serif; color: var(--terracotta); }
.space-options h3 { font: 400 29px Georgia, serif; margin: 0 0 8px; }
.space-options p { margin: 0; color: rgba(23,61,47,.67); font-size: 13px; line-height: 1.5; }
.space-options b { font-size: 23px; font-weight: 400; }

.newsletter-section { padding: 95px clamp(22px, 8vw, 126px); background: #dce8b1; display: grid; grid-template-columns: 1fr minmax(400px, .85fr); gap: 80px; align-items: center; }
.newsletter-section h2 { font-style: italic; }
.newsletter-section > div > p:last-child { max-width: 560px; font: 17px/1.6 Georgia, serif; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; align-items: stretch; border-bottom: 1px solid var(--ink); position: relative; }
.newsletter-form input { min-width: 0; padding: 18px 2px; background: transparent; border: 0; color: var(--ink); }
.newsletter-form input::placeholder { color: rgba(23,61,47,.6); }
.newsletter-form button { border: 0; background: transparent; color: var(--ink); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.form-message { grid-column: 1 / -1; margin: 12px 0 0; font-size: 12px; font-weight: 700; color: var(--forest); }

.site-footer { background: #143b2d; color: #fff; padding: 80px clamp(22px, 7vw, 108px) 24px; }
.site-footer .brand-mark { border-color: var(--leaf); }.site-footer .brand-mark::before, .site-footer .brand-mark::after, .site-footer .brand-mark span { background: var(--leaf); }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; padding-bottom: 70px; }
.footer-brand > p { max-width: 330px; margin: 25px 0 0; color: rgba(255,255,255,.62); font: 16px/1.6 Georgia, serif; }
.footer-phone { display: inline-flex; margin-top: 22px; flex-direction: column; gap: 4px; color: var(--leaf); }
.footer-phone span { text-transform: uppercase; font-size: 8px; font-weight: 900; letter-spacing: .14em; color: rgba(255,255,255,.55); }
.footer-phone strong { font-size: 17px; letter-spacing: .025em; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; }
.footer-links h2 { font: italic 16px Georgia, serif; color: var(--leaf); margin: 0 0 21px; }
.footer-links a { display: block; margin: 11px 0; font-size: 12px; color: rgba(255,255,255,.75); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; font-size: 9px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.52); }

.page-hero { padding: clamp(90px, 12vw, 160px) clamp(22px, 10vw, 155px) 95px; background: var(--cream); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 1040px; font-size: clamp(55px, 8vw, 115px); line-height: .92; color: var(--forest); }
.page-hero > p:last-child { max-width: 720px; margin: 32px 0 0; font: 20px/1.6 Georgia, serif; color: rgba(23,61,47,.72); }

.listing-section, .library-section { padding: 80px clamp(22px, 7vw, 108px) 120px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.filter-row span { border: 1px solid var(--line); border-radius: 30px; padding: 9px 16px; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 800; }
.filter-row span:first-child { color: #fff; background: var(--forest); border-color: var(--forest); }
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.listing-card { border: 1px solid var(--line); background: var(--paper); }
.listing-card img { width: 100%; aspect-ratio: 1.25; object-fit: cover; }
.listing-card > a > div { padding: 28px; display: flex; min-height: 305px; flex-direction: column; align-items: flex-start; }
.listing-card h2 { font-size: 32px; line-height: 1.08; }
.listing-card span { color: rgba(23,61,47,.7); font: 15px/1.55 Georgia, serif; margin-top: 16px; }
.listing-card b { margin-top: auto; padding-top: 28px; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.coming-note { margin-top: 55px; padding: 30px; background: var(--cream); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.coming-note span { font: italic 24px Georgia, serif; }.coming-note p { margin: 0; font-size: 13px; color: rgba(23,61,47,.7); }

.library-note { max-width: 480px; margin: 0 0 45px auto; display: grid; grid-template-columns: 150px 1fr; gap: 25px; align-items: start; }
.library-note strong { font: italic 18px Georgia, serif; }.library-note p { margin: 0; color: rgba(23,61,47,.67); font-size: 13px; line-height: 1.55; }
.library-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.library-card { min-height: 430px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.library-card .plant-letter { min-height: 190px; }
.library-card dl { margin: 24px 0; border-top: 1px solid rgba(23,61,47,.16); }
.library-card dl div { display: grid; grid-template-columns: 70px 1fr; padding: 11px 0; border-bottom: 1px solid rgba(23,61,47,.16); font-size: 11px; }
.library-card dt { text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }.library-card dd { margin: 0; }
.library-card small { margin-top: auto; width: fit-content; background: rgba(255,255,255,.46); border-radius: 20px; padding: 6px 10px; text-transform: uppercase; letter-spacing: .1em; font-size: 8px; font-weight: 800; }

.story-section { display: grid; grid-template-columns: .95fr 1.05fr; }
.story-image { min-height: 860px; position: relative; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image > span { position: absolute; left: 0; bottom: 0; padding: 30px; background: var(--terracotta); color: #fff; font: italic 22px/1.2 Georgia, serif; }
.story-copy { padding: 110px clamp(40px, 8vw, 120px); background: var(--paper); }
.story-copy > p:not(.section-kicker) { font: 17px/1.75 Georgia, serif; color: rgba(23,61,47,.75); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); margin: 45px 0; }
.values-grid > div { padding: 28px 28px 15px 0; }.values-grid > div + div { border-left: 1px solid var(--line); padding-left: 28px; }
.values-grid strong { color: var(--terracotta); font: italic 13px Georgia, serif; }
.values-grid h3 { font: 400 23px Georgia, serif; margin: 17px 0 7px; }.values-grid p { font-size: 12px !important; line-height: 1.5 !important; margin: 0; }

.contact-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding: 100px clamp(22px, 10vw, 155px) 120px; }
.contact-aside { padding-right: 40px; }
.contact-aside h2 { font-size: 36px; }.contact-aside h3 { font: 400 19px Georgia, serif; }
.contact-aside a { color: var(--terracotta); font-weight: 800; font-size: 13px; }
.contact-aside .contact-phone { display: flex; width: fit-content; margin-top: 18px; flex-direction: column; gap: 4px; color: var(--forest); }
.contact-aside .contact-phone span { text-transform: uppercase; font-size: 8px; letter-spacing: .14em; color: var(--terracotta); }
.contact-aside .contact-phone strong { font-size: 20px; }
.contact-aside p { font: 15px/1.65 Georgia, serif; color: rgba(23,61,47,.7); }.contact-aside hr { border: 0; border-top: 1px solid var(--line); margin: 35px 0; }
.contact-form { display: grid; gap: 22px; background: var(--cream); padding: clamp(25px, 5vw, 60px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 8px; text-transform: uppercase; letter-spacing: .1em; font-size: 9px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); border-radius: 0; }
.contact-form textarea { resize: vertical; }.contact-form .button { width: fit-content; }

.article-header { padding: 110px clamp(22px, 13vw, 205px) 85px; background: var(--cream); }
.article-header h1 { max-width: 1000px; font-size: clamp(54px, 7vw, 100px); line-height: .96; }
.article-header > p:last-child { max-width: 760px; margin: 30px 0 0; font: 21px/1.58 Georgia, serif; color: rgba(23,61,47,.7); }
.article-image { margin: 0; height: 620px; }.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-layout { padding: 90px clamp(22px, 10vw, 155px) 125px; display: grid; grid-template-columns: 210px minmax(0, 730px); gap: clamp(50px, 10vw, 150px); justify-content: center; }
.article-layout > aside { position: sticky; top: 30px; align-self: start; padding-top: 8px; }
.article-layout > aside p { text-transform: uppercase; color: var(--terracotta); letter-spacing: .12em; font-size: 9px; font-weight: 900; margin: 0 0 18px; }
.article-layout > aside a { display: block; padding: 10px 0; color: rgba(23,61,47,.66); font: 14px/1.35 Georgia, serif; }
.article-copy > section { padding: 0 0 54px; margin-bottom: 54px; border-bottom: 1px solid var(--line); scroll-margin-top: 30px; }
.article-copy > section > span { color: var(--terracotta); font: italic 13px Georgia, serif; }
.article-copy h2 { margin: 10px 0 24px; font-size: 42px; line-height: 1.05; }
.article-copy p, .legal-copy p, .legal-copy li { color: rgba(23,61,47,.76); font: 17px/1.8 Georgia, serif; }
.article-copy blockquote { margin: 30px 0; padding: 25px 30px; border-left: 3px solid var(--terracotta); background: var(--cream); font: italic 20px/1.55 Georgia, serif; }
.article-callout { padding: 45px; background: var(--forest); color: #fff; }.article-callout h2 { color: #fff; font-size: 36px; }.article-callout a { color: var(--leaf); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }

.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 800px); justify-content: center; gap: clamp(55px, 10vw, 150px); padding: 90px clamp(22px, 8vw, 125px) 130px; }
.legal-layout > aside { align-self: start; position: sticky; top: 30px; padding: 23px; background: var(--cream); }
.legal-layout > aside p { margin: 0 0 6px; text-transform: uppercase; color: var(--terracotta); letter-spacing: .11em; font-size: 8px; font-weight: 900; }
.legal-layout > aside strong, .legal-layout > aside a { display: block; font: 14px/1.5 Georgia, serif; }.legal-layout > aside a { margin-top: 18px; color: var(--terracotta); }
.legal-copy > section { border-bottom: 1px solid var(--line); padding: 0 0 40px; margin-bottom: 40px; }
.legal-copy h2 { font-size: 34px; line-height: 1.1; margin: 0 0 20px; }
.legal-copy a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-copy li { margin: 8px 0; }

.not-found { min-height: 620px; padding: 130px clamp(22px, 12vw, 190px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--cream); }
.not-found h1 { max-width: 820px; font-size: clamp(58px, 8vw, 110px); line-height: .92; }.not-found > p:not(.section-kicker) { max-width: 520px; font: 19px/1.6 Georgia, serif; margin: 30px 0; }

@media (max-width: 760px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { gap: 0; }
  .header-cta { padding: 11px 13px; }
  .header-cta span { display: none; }
  .contact-bar-inner { justify-content: center; }
  .contact-bar-inner > span { display: none; }
  .contact-bar-inner a { gap: 9px; }
  .floating-phone { display: inline-flex; right: 12px; bottom: 12px; }
  .hero { min-height: 720px; align-items: flex-start; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,42,30,.86), rgba(12,42,30,.35)); }
  .hero-content { width: 100%; padding: 86px 22px 140px; }
  .hero-copy { max-width: 90%; }
  .hero-note { left: 22px; right: auto; }
  .intro { padding-top: 76px; }
  .intro-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .intro-grid article, .intro-grid article + article { border-left: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .feature-section { grid-template-columns: 1fr; padding: 78px 22px; gap: 62px; }
  .feature-image-wrap, .feature-image-wrap img { min-height: 500px; height: 500px; }
  .feature-image-wrap > p { width: 120px; height: 120px; right: 12px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 45px; }
  .guide-grid, .plant-grid, .listing-grid, .library-grid { grid-template-columns: 1fr; }
  .guide-card, .guide-card-large { min-height: 500px; }
  .plant-card, .library-card { min-height: 390px; }
  .plant-card .plant-letter { font-size: 150px; }
  .space-section { grid-template-columns: 1fr; }
  .space-copy { padding: 80px 22px; }
  .space-options a { padding: 30px 22px; grid-template-columns: 32px 1fr auto; }
  .newsletter-section { grid-template-columns: 1fr; gap: 38px; padding: 75px 22px; }
  .newsletter-form { grid-template-columns: 1fr; border: 0; }
  .newsletter-form input { border-bottom: 1px solid var(--ink); }
  .newsletter-form button { width: fit-content; padding: 18px 0 4px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding: 85px 22px 70px; }
  .library-note { margin-left: 0; grid-template-columns: 1fr; }
  .coming-note { align-items: flex-start; flex-direction: column; }
  .story-section, .contact-section { grid-template-columns: 1fr; }
  .story-image { min-height: 580px; }
  .story-copy { padding: 75px 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid > div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .contact-section { padding: 75px 22px; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .article-header { padding: 85px 22px 65px; }
  .article-image { height: 440px; }
  .article-layout, .legal-layout { grid-template-columns: 1fr; padding: 70px 22px 90px; gap: 40px; }
  .article-layout > aside, .legal-layout > aside { position: static; }
  .article-layout > aside { display: none; }
  .article-copy p, .legal-copy p, .legal-copy li { font-size: 16px; }
  .article-callout { padding: 32px 25px; }
  .not-found { padding: 100px 22px; }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-card-large { grid-column: 1 / -1; }
  .plant-grid, .library-grid { grid-template-columns: repeat(2, 1fr); }
  .listing-grid { grid-template-columns: 1fr 1fr; }
}

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; background: var(--paper); color: var(--ink); padding: 12px 16px; border: 2px solid var(--terracotta); }
.skip-link:focus { top: 16px; }
[hidden] { display: none !important; }
