:root {
  --green-950: #0e2e27;
  --green-900: #173f35;
  --green-800: #1e5546;
  --green-100: #dfece6;
  --orange: #c76532;
  --orange-dark: #9b431e;
  --cream: #f7f2e7;
  --paper: #fffdf7;
  --ink: #22312c;
  --muted: #64736d;
  --line: #ccd8d2;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 46, 39, 0.14);
  --shadow-small: 0 14px 36px rgba(14, 46, 39, 0.1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.62; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-150%); padding: 10px 14px; border-radius: 8px; color: var(--white); background: var(--green-950); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: relative; z-index: 20; border-bottom: 1px solid rgba(204, 216, 210, .7); background: rgba(255, 253, 247, .94); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; color: var(--green-900); text-decoration: none; }
.brand-logo { width: auto; height: 76px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 25px; }
.desktop-nav a { color: #3b4a45; font-size: .91rem; font-weight: 720; text-decoration: none; }
.desktop-nav a:hover { color: var(--green-800); }
.desktop-nav .nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 17px; border-radius: 999px; color: var(--white); background: var(--green-900); }
.mobile-nav { display: none; position: relative; }
.mobile-nav summary { cursor: pointer; list-style: none; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; color: var(--green-900); font-weight: 800; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav { position: absolute; right: 0; top: 50px; width: 230px; display: grid; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-small); }
.mobile-nav nav a { padding: 10px 11px; border-radius: 8px; color: var(--green-900); font-weight: 700; text-decoration: none; }
.mobile-nav nav a:hover { background: var(--green-100); }
.home-hero { overflow: hidden; background: radial-gradient(circle at 85% 12%, rgba(223, 236, 230, .95) 0 13rem, transparent 13.1rem), linear-gradient(135deg, var(--paper), var(--cream)); }
.hero-grid { min-height: 510px; display: grid; grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr); align-items: center; gap: 46px; padding-block: 34px 48px; }
.eyebrow { margin: 0 0 20px; color: var(--orange-dark); font-size: .83rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { color: var(--green-900); text-wrap: balance; }
h1 { max-width: 720px; margin: 0; font-size: clamp(3rem, 4.65vw, 4.45rem); line-height: .96; letter-spacing: -.052em; }
h2 { margin: 0; font-size: clamp(2.35rem, 4.2vw, 4rem); line-height: 1.02; letter-spacing: -.046em; }
h3 { margin: 0; font-size: 1.55rem; line-height: 1.14; letter-spacing: -.025em; }
.lead { max-width: 670px; margin: 24px 0 0; color: #43534d; font-size: 1.12rem; }
.lead-small { margin: 24px 0 30px; color: #43534d; font-size: 1.12rem; }
.actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.button { min-height: 53px; display: inline-flex; align-items: center; justify-content: center; padding: 0 23px; border: 2px solid var(--green-900); border-radius: 999px; font-weight: 820; text-decoration: none; transition: transform 150ms ease, box-shadow 150ms ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--green-900); box-shadow: 0 12px 28px rgba(23, 63, 53, .2); }
.button.secondary { color: var(--green-900); background: transparent; }
.button.light { border-color: var(--cream); color: var(--green-950); background: var(--cream); }
.button.outline-light { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.button:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid #e68650; outline-offset: 4px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px 20px; margin-top: 27px; color: var(--green-800); font-size: .84rem; font-weight: 800; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--orange); }
.product-stack { position: relative; min-height: 440px; transform: translateY(-10px); }
.stack-card { position: absolute; width: 84%; margin: 0; overflow: hidden; border: 1px solid rgba(23,63,53,.14); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); }
.stack-card img { width: 100%; height: auto; }
.stack-back { top: 1%; left: 0; transform: rotate(-7deg); }
.stack-middle { top: 11%; right: 0; transform: rotate(5deg); }
.stack-front { top: 22%; left: 8%; z-index: 3; }
.section { padding-block: 70px; border-top: 1px solid rgba(204, 216, 210, .74); }
.intro-strip { padding-block: 40px; color: var(--white); background: var(--green-900); border: 0; }
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); }
.three-up article { padding: 16px 34px; border-left: 1px solid rgba(255,255,255,.18); }
.three-up article:first-child { border-left: 0; padding-left: 0; }
.three-up span { color: #e5986e; font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.three-up h2 { margin: 6px 0 7px; color: var(--white); font-size: 1.18rem; letter-spacing: -.01em; }
.three-up p { margin: 0; color: #dbe9e3; font-size: .93rem; }
.section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 64px; margin-bottom: 46px; }
.section-head > p { margin: 0 0 5px; color: var(--muted); font-size: 1.04rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product-card { overflow: hidden; display: grid; grid-template-columns: minmax(250px, 1fr) minmax(0, 1fr); align-items: center; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 10px 34px rgba(23,63,53,.06); }
.product-card.featured-product { grid-column: 1 / -1; grid-template-columns: minmax(410px, 1.08fr) minmax(0, .92fr); }
.product-image { align-self: stretch; display: grid; place-items: center; padding: 22px; overflow: hidden; background: var(--cream); }
.product-image img { width: 100%; height: auto; aspect-ratio: 5 / 4; object-fit: contain; border-radius: 13px; box-shadow: 0 10px 26px rgba(14,46,39,.14); }
.product-body { display: flex; flex-direction: column; align-items: flex-start; padding: 31px; }
.featured-product .product-body { justify-content: center; padding: 36px 42px; }
.featured-product h3 { font-size: 1.95rem; }
.featured-product .product-body p { font-size: 1.05rem; }
.featured-product .product-body ul { line-height: 1.8; }
.product-label { margin-bottom: 13px; color: var(--orange-dark); font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.product-body p { margin: 14px 0 18px; color: var(--muted); }
.product-body ul { margin: 0 0 21px; padding-left: 20px; color: #43534d; }
.product-body .text-link { margin-top: auto; }
.text-link { color: var(--green-800); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.text-link span { display: inline-block; margin-left: 4px; transition: transform 150ms ease; }
.text-link:hover span { transform: translateX(4px); }
.free-section { background: var(--cream); }
.free-grid { display: grid; grid-template-columns: minmax(300px, .74fr) minmax(0, 1.26fr); align-items: center; gap: 52px; }
.free-preview { position: relative; width: min(100%, 430px); height: 400px; justify-self: center; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); transform: rotate(-1deg); }
.free-preview::after { content: "FREE"; position: absolute; top: -17px; right: 30px; display: grid; min-width: 86px; height: 38px; place-items: center; border-radius: 999px; color: var(--white); background: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.free-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; border-radius: 12px; }
.split-panel { display: grid; grid-template-columns: 1fr .82fr; gap: 94px; align-items: start; }
.split-panel > div:last-child { padding: 26px 0 0 34px; border-left: 4px solid var(--orange); }
.split-panel p { margin: 0 0 18px; color: #43534d; font-size: 1.1rem; }
.split-panel .muted { color: var(--muted); font-size: .94rem; }
.about-section { color: var(--white); background: var(--green-950); }
.about-grid { display: grid; grid-template-columns: 240px 1fr; align-items: center; gap: 74px; }
.brand-panel { width: 220px; min-height: 220px; display: grid; place-items: center; padding: 20px; border-left: 5px solid var(--orange); border-radius: 0 18px 18px 0; background: var(--cream); }
.brand-panel img { width: 100%; height: auto; }
.inline-links { display: flex; flex-wrap: wrap; gap: 14px 24px; }
.text-link-light { display: inline-block; margin-top: 6px; color: #f4c2a5; }
.about-section h2 { color: var(--white); }
.about-section p:not(.eyebrow) { max-width: 790px; color: #d5e3dd; font-size: 1.08rem; }
.about-section .eyebrow { color: #e59a72; }
.contact-section { padding-block: 78px; border: 0; background: var(--orange); }
.contact-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px; }
.contact-panel .eyebrow { color: #55210c; }
.contact-panel h2 { color: var(--white); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.site-footer { padding: 64px 0 28px; color: #cddbd5; background: #0a241e; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .7fr; gap: 60px; }
.footer-grid > div { display: grid; align-content: start; gap: 9px; }
.footer-grid > div:first-child { display: block; }
.footer-grid strong { margin-bottom: 6px; color: var(--white); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a { color: #cddbd5; text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { width: fit-content; padding: 9px; border-radius: 14px; background: var(--cream); }
.footer-brand .brand-logo { height: 112px; }
.footer-grid p { max-width: 420px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: #9db0a8; font-size: .84rem; }
.resource-hero { background: radial-gradient(circle at 91% 7%, rgba(223,236,230,.92) 0 10rem, transparent 10.1rem), linear-gradient(135deg, var(--paper), var(--cream)); }
.resource-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(430px,1fr); align-items: center; gap: 52px; padding-block: 48px 70px; }
.resource-hero h1 { font-size: clamp(3.25rem, 6vw, 5.75rem); }
.preview-wrap { position: relative; }
.preview-wrap::before { content: ""; position: absolute; inset: -26px 36px 30px -28px; z-index: 0; border-radius: 34px; background: var(--green-900); transform: rotate(-2.1deg); }
.preview-card { position: relative; z-index: 1; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.preview-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 18px; border-bottom: 1px solid #e8eeeb; background: #f8faf9; }
.preview-dot { width: 9px; height: 9px; border-radius: 50%; background: #d7dedb; }
.preview-dot:first-child { background: var(--orange); }
.preview-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 42px; }
.metric { min-height: 165px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.72); }
.metric strong { display: block; margin-bottom: 10px; color: var(--green-900); font-size: 1.18rem; }
.metric p { margin: 0; color: var(--muted); }
.steps-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 54px; align-items: start; }
.step-list { counter-reset: step; display: grid; gap: 12px; }
.step { counter-increment: step; display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 21px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.step::before { content: counter(step, decimal-leading-zero); color: var(--orange); font-weight: 900; }
.step strong { color: var(--green-900); }
.step p { margin: 5px 0 0; color: var(--muted); }
.upgrade { position: relative; overflow: hidden; padding: 54px; border-radius: 28px; color: var(--white); background: var(--green-900); }
.upgrade::after { content: ""; position: absolute; width: 210px; height: 210px; right: -70px; bottom: -90px; border: 28px solid rgba(255,255,255,.08); border-radius: 50%; }
.upgrade h2, .upgrade p, .upgrade .button { position: relative; z-index: 1; }
.upgrade h2 { color: var(--white); }
.upgrade p { max-width: 760px; color: #e5f0eb; font-size: 1.08rem; }
.upgrade .button { margin-top: 20px; }
.resource-footer { padding: 38px 0; color: var(--muted); font-size: .88rem; }
.resource-footer .shell { display: flex; justify-content: space-between; gap: 24px; }
.compact-section { padding-block: 60px; }
.cream-section { background: var(--cream); }
.interior-hero { background: linear-gradient(135deg, var(--paper), var(--cream)); }
.interior-hero-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 64px; padding-block: 58px 68px; }
.interior-hero h1, .consulting-hero h1 { font-size: clamp(3.25rem, 5.7vw, 5.4rem); }
.interior-hero-image { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.interior-hero-image img { width: 100%; height: auto; object-fit: contain; }
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; }
.story-copy p { margin: 0 0 18px; color: #43534d; font-size: 1.08rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-grid article, .service-grid article { padding: 27px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.78); }
.values-grid span { color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .15em; }
.values-grid h3, .service-grid h3 { margin-top: 8px; }
.values-grid p, .service-grid p { margin: 12px 0 0; color: var(--muted); }
.workspace-feature { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
.workspace-image { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-small); }
.workspace-image img { width: 100%; height: auto; object-fit: contain; }
.workspace-feature p:not(.eyebrow) { color: #43534d; font-size: 1.05rem; }
.consulting-hero { color: var(--white); background: radial-gradient(circle at 90% 10%, rgba(76,132,107,.48), transparent 24rem), var(--green-950); }
.consulting-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 80px; padding-block: 70px 78px; }
.consulting-hero h1 { color: var(--white); }
.consulting-hero .lead { color: #d7e5df; }
.consulting-hero .eyebrow { color: #efa47b; }
.consulting-hero .button.primary { border-color: var(--cream); color: var(--green-950); background: var(--cream); }
.consulting-hero .button.secondary { border-color: rgba(255,255,255,.65); color: var(--white); }
.consulting-side { padding: 32px; border-left: 4px solid var(--orange); background: rgba(255,255,255,.055); }
.consulting-side p { margin-top: 0; color: #d7e5df; font-size: 1.05rem; }
.consulting-side strong { color: var(--white); font-size: 1.22rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.process-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: start; }
.process-list { counter-reset: consulting-step; display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-list li { counter-increment: consulting-step; display: grid; grid-template-columns: 46px 118px 1fr; align-items: center; gap: 14px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.process-list li::before { content: counter(consulting-step, decimal-leading-zero); color: var(--orange); font-weight: 900; }
.process-list strong { color: var(--green-900); }
.process-list span { color: var(--muted); }
.case-study { display: grid; grid-template-columns: 1.14fr .86fr; gap: 64px; align-items: center; }
.case-study p { color: #43534d; }
.case-subtitle { margin: 10px 0 20px; color: var(--orange-dark) !important; font-weight: 800; }
.result-panel { padding: 34px; border-radius: 23px; color: var(--white); background: var(--green-900); }
.result-panel span { color: #f0ad87; font-size: .8rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.result-panel strong { display: block; margin: 6px 0 10px; font-size: clamp(3rem, 6vw, 5rem); line-height: 1; }
.result-panel p { margin: 0; color: #e0ece7; }
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero-grid, .resource-hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-grid { padding-top: 44px; }
  .product-stack { width: min(720px, 100%); min-height: 560px; margin-inline: auto; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .product-card, .product-card.featured-product { grid-template-columns: 1fr; }
  .product-image { max-height: 380px; overflow: hidden; }
  .product-image img { width: min(610px, 100%); }
  .free-grid { grid-template-columns: 1fr; gap: 44px; }
  .free-preview { height: clamp(260px, 64vw, 420px); }
  .split-panel { gap: 52px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-actions { justify-content: flex-start; }
  .metric-grid { grid-template-columns: repeat(2,1fr); }
  .interior-hero-grid, .consulting-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-grid, .workspace-feature, .process-grid, .case-study { grid-template-columns: 1fr; gap: 44px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 30px, 1180px); }
  .header-inner { min-height: 78px; }
  .brand-logo { height: 62px; }
  .home-hero { background: linear-gradient(135deg, var(--paper), var(--cream)); }
  .hero-grid { min-height: auto; padding-block: 38px 54px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .lead { font-size: 1.06rem; }
  .actions { align-items: stretch; }
  .actions .button { width: 100%; }
  .product-stack { min-height: 350px; transform: none; }
  .stack-card { width: 86%; border-radius: 17px; }
  .section { padding-block: 60px; }
  .three-up { grid-template-columns: 1fr; }
  .three-up article, .three-up article:first-child { padding: 20px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .three-up article:first-child { border-top: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .product-body, .featured-product .product-body { padding: 27px; }
  .split-panel, .about-grid, .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .split-panel > div:last-child { padding: 0 0 0 20px; }
  .brand-panel { width: min(260px, 100%); min-height: 0; justify-self: center; }
  .footer-brand .brand-logo { height: 96px; }
  .contact-actions { display: grid; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom, .resource-footer .shell { flex-direction: column; }
  .metric-grid { grid-template-columns: 1fr; }
  .resource-hero-grid { padding-block: 44px 74px; }
  .preview-wrap { width: 94%; margin-inline: auto; }
  .preview-wrap::before { inset: -16px 20px 20px -14px; }
  .upgrade { padding: 38px 26px; }
  .compact-section { padding-block: 58px; }
  .interior-hero-grid, .consulting-hero-grid { padding-block: 46px 58px; }
  .values-grid, .service-grid { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 38px 1fr; }
  .process-list li span { grid-column: 2; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition-duration: .01ms !important; } }
