@charset "utf-8";

:root {
  color-scheme: light;
  --ink: #122321;
  --ink-soft: #253a37;
  --paper: #f3f1e9;
  --paper-deep: #e8e6dc;
  --white: #fffef9;
  --line: #d7d7cd;
  --muted: #68726d;
  --acid: #d9f16d;
  --coral: #f26a4b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI Variable", "Segoe UI", Tahoma, Arial, sans-serif;
  --mono: "Cascadia Code", Consolas, monospace;
  --page: 1220px;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.55; }
body, button, input, select, textarea { font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-size: 1rem; }
button, a, input, select, textarea, summary { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img, svg { max-width: 100%; }
::selection { color: var(--ink); background: var(--acid); }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; z-index: 50; inset-block-start: 8px; inset-inline-start: 8px; transform: translateY(-150%); padding: 10px 14px; border-radius: 4px; background: var(--acid); color: var(--ink); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(var(--page), calc(100% - 64px)); margin-inline: auto; }

/* Shared header and footer */
.site-header { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(var(--page), calc(100% - 64px)); min-height: 90px; margin-inline: auto; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; width: 39px; height: 39px; background: var(--ink); color: var(--acid); font-family: var(--serif); font-size: 1.05rem; letter-spacing: -.08em; }
.brand-text { display: grid; gap: 0; font-size: .85rem; font-weight: 800; letter-spacing: .045em; line-height: 1.1; }
.brand-text small { margin-top: 4px; color: var(--muted); font-family: var(--mono); font-size: .52rem; font-weight: 500; letter-spacing: .12em; }
.main-nav { display: flex; align-items: center; gap: clamp(15px, 2.2vw, 30px); margin-inline-start: auto; }
.main-nav a { color: #475650; font-size: .82rem; font-weight: 650; transition: color .18s ease; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink); }
.main-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 7px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-toggle { min-width: 62px; padding: 9px 11px; border: 1px solid var(--line); background: transparent; font-size: .75rem; font-weight: 750; cursor: pointer; }
.header-book { padding: 11px 15px; background: var(--ink); color: var(--white); font-size: .78rem; font-weight: 700; transition: background .2s ease, color .2s ease; }
.header-book:hover { background: var(--acid); color: var(--ink); }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; padding: 8px 11px; font-size: .8rem; font-weight: 700; cursor: pointer; }
.site-footer { margin-top: 100px; padding: 44px 0 20px; background: var(--ink); color: var(--white); }
.footer-main { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; width: min(var(--page), calc(100% - 64px)); margin-inline: auto; padding-bottom: 40px; }
.footer-brand { max-width: 290px; }
.footer-brand .brand-mark { border: 1px solid #54625d; background: transparent; }
.footer-brand p { margin: 18px 0 0; color: #bbc3bb; font-size: .9rem; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 12px 34px; color: #d2d6cf; font-size: .84rem; }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; width: min(var(--page), calc(100% - 64px)); margin-inline: auto; padding-top: 15px; border-top: 1px solid #344440; color: #aeb9b2; font-family: var(--mono); font-size: .67rem; letter-spacing: .04em; }
.no-script-nav { width: min(var(--page), calc(100% - 64px)); margin: 10px auto; padding: 10px; border: 1px dashed var(--line); font-size: .9rem; }

/* Buttons, labels, and section typography */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 48px; padding: 12px 17px; border: 1px solid transparent; font-size: .83rem; font-weight: 750; line-height: 1.25; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-primary:hover { background: #c9e65a; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #28413c; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--acid); }
.button-quiet { border-color: var(--line); background: transparent; color: var(--ink); }
.button-quiet:hover { border-color: var(--ink); background: var(--white); }
.button:disabled { opacity: .56; cursor: not-allowed; transform: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: .82rem; font-weight: 750; }
.text-link:hover { color: #4b625c; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 18px; color: #61706a; font-family: var(--mono); font-size: .67rem; font-weight: 600; letter-spacing: .1em; line-height: 1.35; }
.eyebrow-dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--coral); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-weight: 650; letter-spacing: -.055em; line-height: 1.06; }
h1 { max-width: 850px; margin-bottom: 25px; font-size: clamp(3.2rem, 7.4vw, 6.75rem); }
h2 { margin-bottom: 17px; font-size: clamp(2rem, 4.2vw, 3.55rem); }
h3 { margin-bottom: 10px; font-size: 1.25rem; letter-spacing: -.025em; line-height: 1.18; }
.fine-print, .form-hint { color: var(--muted); font-size: .76rem; }
.fine-print { margin: 18px 0 0; }
.loading-note { color: var(--muted); font-size: .85rem; }

/* Home */
.hero { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(35px, 6vw, 90px); min-height: 630px; padding-top: 70px; padding-bottom: 100px; }
.hero-copy { position: relative; z-index: 1; max-width: 650px; }
.hero h1 { max-width: 700px; margin-bottom: 24px; }
.accent-line { color: #536b5f; font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -.07em; }
.hero-lede { max-width: 510px; margin-bottom: 28px; color: #53615b; font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-note { margin: 18px 0 0; color: #79817b; font-size: .75rem; }
.hero-art { position: relative; min-height: 425px; overflow: hidden; padding: 26px; background: var(--ink); color: var(--white); isolation: isolate; }
.hero-art::before { position: absolute; z-index: -1; inset: 0; background-image: linear-gradient(#fff1 1px, transparent 1px), linear-gradient(90deg,#fff1 1px,transparent 1px); background-size: 40px 40px; content: ""; mask-image: linear-gradient(135deg,#000 10%,transparent 88%); }
.art-topline { display: flex; justify-content: space-between; gap: 14px; color: #a9b6ad; font-family: var(--mono); font-size: .6rem; letter-spacing: .11em; }
.art-index { color: var(--acid); }
.path-node { position: relative; display: flex; align-items: center; gap: 16px; width: min(calc(100% - 42px), 340px); min-height: 64px; margin-inline-start: clamp(18px, 6%, 28px); padding: 12px 15px; border: 1px solid #52615b; background: #172a27; font-size: .92rem; font-weight: 650; }
.path-node-main { margin-top: 50px; border-color: var(--acid); }
.path-node-end { margin-inline-start: clamp(20px, 8%, 42px); border-color: var(--coral); }
.node-number { color: #83918a; font-family: var(--mono); font-size: .62rem; }
.node-mark { margin-inline-start: auto; color: var(--acid); font-size: 1.1rem; }
.path-connector { width: 1px; height: 29px; margin-inline-start: 22%; background: #73837a; }
.path-connector + .path-node-end { margin-top: 0; }
.art-caption { display: flex; align-items: center; gap: 9px; margin-top: 30px; color: #b6c0b8; font-size: .75rem; }
.caption-line { width: 24px; height: 1px; background: var(--coral); }
.art-orbit { position: absolute; z-index: -1; width: 340px; height: 340px; border: 1px solid #ffffff13; border-radius: 50%; }
.orbit-one { inset-inline-end: -200px; inset-block-end: -160px; }
.orbit-two { inset-inline-end: -170px; inset-block-end: -120px; }
.hero-stamp { position: absolute; inset-inline-start: 0; inset-block-end: 35px; display: flex; align-items: center; gap: 10px; color: #7c8780; font-family: var(--mono); font-size: .63rem; letter-spacing: .12em; }
.hero-stamp span:first-child { display: grid; place-items: center; width: 27px; height: 27px; background: var(--coral); color: var(--ink); font-family: var(--serif); font-size: .75rem; font-weight: bold; letter-spacing: -.08em; }
.ticker { overflow: hidden; background: var(--acid); color: var(--ink); }
.ticker-inner { display: flex; justify-content: space-around; align-items: center; gap: 28px; width: min(var(--page), calc(100% - 64px)); min-height: 58px; margin-inline: auto; white-space: nowrap; font-family: var(--mono); font-size: .68rem; font-weight: 650; letter-spacing: .08em; }
.ticker-inner i { color: var(--coral); font-size: 1.1rem; font-style: normal; }
.section-block { padding-top: 105px; padding-bottom: 105px; }
.section-heading { max-width: 770px; margin-bottom: 38px; }
.section-heading h2 { max-width: 650px; }
.section-heading-row { display: flex; justify-content: space-between; align-items: end; gap: 24px; max-width: none; }
.section-heading-row .text-link { margin-bottom: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.service-card { position: relative; min-height: 340px; padding: 25px; }
.service-card-dark { background: var(--ink); color: var(--white); }
.service-card-light { background: var(--paper-deep); }
.service-card-accent { background: var(--coral); }
.card-number { color: #9aa69d; font-family: var(--mono); font-size: .65rem; }
.service-card-dark .card-number { color: #98a59d; }
.service-icon { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin: 28px 0 23px; border: 1px solid #7c8981; color: var(--ink); }
.service-card-dark .service-icon { border-color: #65766d; color: var(--acid); }
.icon-layout { align-items: flex-start; gap: 4px; padding: 12px; }
.icon-layout span { display: block; width: 8px; height: 31px; background: var(--acid); }
.icon-layout span:first-child { width: 20px; }
.icon-layout span:nth-child(2) { height: 20px; }
.icon-layout span:nth-child(3) { height: 26px; }
.icon-type { font-family: var(--serif); font-size: 1.8rem; font-style: italic; }
.icon-route { flex-direction: column; align-items: flex-start; gap: 0; padding: 5px 12px; font-size: 1.1rem; }
.service-card h3 { max-width: 240px; font-size: 1.32rem; }
.service-card p { max-width: 300px; margin-bottom: 0; color: #5c6962; font-size: .85rem; }
.service-card-dark p { color: #bdc6bd; }
.service-card a { position: absolute; inset-inline-end: 22px; inset-block-end: 22px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; font-size: .9rem; }
.service-card a:hover { background: var(--white); color: var(--ink); }
.work-band { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 60px; padding: 70px; background: var(--ink); color: var(--white); }
.work-band-copy h2 { max-width: 500px; font-size: clamp(2.1rem,4vw,3.4rem); }
.work-band-copy p:not(.eyebrow) { max-width: 460px; margin-bottom: 25px; color: #c5ccc4; }
.work-preview { position: relative; min-height: 360px; padding: 16px; background: #d9d8cf; color: var(--ink); transform: rotate(-1deg); box-shadow: 15px 20px 0 #0d1c1a; }
.preview-bar { display: flex; align-items: center; gap: 6px; height: 30px; border-bottom: 1px solid #aab0a7; }
.preview-bar span { width: 7px; height: 7px; border-radius: 50%; background: #aab0a7; }
.preview-bar i { margin-inline-start: auto; color: #728078; font-family: var(--mono); font-size: .58rem; font-style: normal; }
.preview-content { position: absolute; inset-inline-start: 12%; inset-block-start: 23%; }
.preview-kicker { color: #63716a; font-family: var(--mono); font-size: .57rem; letter-spacing: .12em; }
.preview-content strong { display: block; margin: 18px 0; font-size: clamp(1.8rem,3vw,3rem); letter-spacing: -.07em; line-height: .98; }
.preview-content em { color: #61786b; font-family: var(--serif); font-weight: 400; }
.preview-line { width: 105px; height: 1px; margin: 22px 0; background: var(--coral); }
.preview-chip { width: fit-content; padding: 9px 12px; background: var(--acid); font-family: var(--mono); font-size: .58rem; }
.preview-side { position: absolute; inset-inline-end: 18px; inset-block-end: 18px; color: #76827b; font-family: var(--mono); font-size: .56rem; line-height: 1.5; text-align: end; }
.package-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 315px; padding: 24px; border: 1px solid var(--line); background: var(--white); }
.package-card.featured { border-color: var(--ink); box-shadow: 7px 7px 0 var(--acid); }
.package-card-top { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 16px; }
.package-card h3 { margin: 0; font-size: 1.28rem; }
.package-tag { color: #62716a; font-family: var(--mono); font-size: .58rem; letter-spacing: .08em; }
.package-price { margin: 13px 0 10px; font-size: 1.55rem; font-weight: 760; letter-spacing: -.05em; line-height: 1.2; }
.package-description { min-height: 69px; margin-bottom: 13px; color: #647068; font-size: .82rem; }
.package-pages { margin-top: auto; padding-top: 13px; border-top: 1px solid var(--line); color: #53615b; font-family: var(--mono); font-size: .65rem; }
.package-card .button { justify-content: space-between; margin-top: 15px; }
.package-card .package-custom-note { margin: 12px 0 0; color: #68756f; font-size: .72rem; }
.process-band { padding: 98px 0; background: var(--paper-deep); }
.process-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.process-title h2 { max-width: 470px; font-size: clamp(2.1rem,4vw,3.4rem); }
.process-title .text-link { margin-top: 12px; }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 18px 0; border-top: 1px solid #c7c9be; }
.process-list li > span { color: #7a867e; font-family: var(--mono); font-size: .7rem; }
.process-list h3 { margin: 0 0 3px; font-size: 1.12rem; }
.process-list p { max-width: 500px; margin-bottom: 0; color: #66716a; font-size: .82rem; }
.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 17px 28px 17px 0; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; inset-inline-end: 0; content: "+"; color: #627069; font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; margin: 0 0 19px; color: #5e6c64; font-size: .86rem; }
.cta-section { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding-top: 65px; padding-bottom: 72px; border-top: 1px solid var(--line); }
.cta-section h2 { max-width: 610px; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* Inner pages */
.page-hero { padding-top: 100px; padding-bottom: 56px; }
.page-hero h1 { max-width: 970px; font-size: clamp(3rem,7vw,6rem); }
.page-hero > p:last-child { max-width: 700px; margin-bottom: 0; color: #596860; font-size: 1.08rem; line-height: 1.7; }
.page-hero-pricing { padding-bottom: 38px; }
.service-detail-list { padding-bottom: 20px; }
.service-detail { display: grid; grid-template-columns: 150px 1fr 34px; gap: 28px; padding: 36px 0; border-top: 1px solid var(--line); }
.detail-number { color: #76827a; font-family: var(--mono); font-size: .65rem; letter-spacing: .08em; }
.service-detail h2 { max-width: 700px; margin: 0 0 12px; font-size: clamp(1.8rem,3.3vw,2.7rem); }
.service-detail p { max-width: 720px; margin-bottom: 18px; color: #56645d; }
.service-detail ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px 24px; margin: 0; padding-inline-start: 19px; color: #364840; font-size: .83rem; }
.detail-arrow { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #bbc0b5; border-radius: 50%; }
.note-band { display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 18px; padding: 25px; background: var(--acid); }
.note-band p { margin: 0; font-size: .87rem; }
.note-mark { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); font-weight: 700; }
.note-band .text-link { white-space: nowrap; }
.project-case { padding-bottom: 30px; }
.case-meta { display: flex; justify-content: space-between; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #6d7971; font-family: var(--mono); font-size: .64rem; letter-spacing: .08em; }
.case-meta span:last-child { color: #4b6954; }
.case-visual { position: relative; display: grid; place-items: center; min-height: 490px; margin-top: 24px; overflow: hidden; background: #d8d8ce; }
.case-visual::before { position: absolute; inset: 0; background-image: linear-gradient(#1c332812 1px,transparent 1px),linear-gradient(90deg,#1c332812 1px,transparent 1px); background-size: 42px 42px; content: ""; }
.case-screen { position: relative; z-index: 1; width: min(76%,750px); min-height: 350px; padding: 18px 24px; background: var(--paper); box-shadow: 15px 19px 0 #66746a; transform: rotate(-1.3deg); }
.screen-nav { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line); color: #637169; font-family: var(--mono); font-size: .57rem; }
.screen-body { padding: 58px 4% 35px; }
.screen-tag { color: #718078; font-family: var(--mono); font-size: .61rem; letter-spacing: .1em; }
.screen-body h2 { margin: 18px 0 25px; font-size: clamp(2.2rem,5vw,4.2rem); }
.screen-body h2 i { color: #61796d; font-family: var(--serif); font-weight: 400; }
.screen-button { display: inline-block; padding: 10px 13px; background: var(--acid); font-family: var(--mono); font-size: .57rem; }
.screen-footer { display: flex; justify-content: space-between; gap: 10px; padding-top: 13px; border-top: 1px solid var(--line); color: #68756d; font-family: var(--mono); font-size: .56rem; }
.case-side-label { position: absolute; inset-inline-end: 24px; inset-block-end: 25px; color: #66736b; font-family: var(--mono); font-size: .63rem; line-height: 1.5; text-align: end; }
.case-details { display: grid; grid-template-columns: .8fr 1.2fr; gap: 58px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.case-details h2 { font-size: 2.2rem; }
.case-details > div:first-child p { max-width: 470px; color: #5d6962; }
.case-details dl { display: grid; gap: 18px; margin: 0; }
.case-details dl div { display: grid; grid-template-columns: 100px 1fr; gap: 14px; }
.case-details dt { color: #728077; font-family: var(--mono); font-size: .64rem; text-transform: uppercase; }
.case-details dd { margin: 0; color: #35473f; font-size: .85rem; }
.case-actions { display: flex; align-items: center; gap: 22px; padding: 24px 0; }
.empty-proof { margin-top: 55px; margin-bottom: 60px; padding: 37px; border: 1px dashed #b8beb4; }
.empty-proof h2 { max-width: 840px; font-size: clamp(1.8rem,3.5vw,2.8rem); }
.empty-proof > p:last-child { margin-bottom: 0; color: #68746d; }
.package-section { padding-bottom: 64px; }
.package-cards-full .package-card { min-height: 360px; }
.comparison-section { padding-top: 35px; padding-bottom: 100px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
table { width: 100%; min-width: 630px; border-collapse: collapse; font-size: .83rem; }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: start; }
thead th { background: var(--ink); color: var(--white); font-size: .76rem; }
tbody th { width: 26%; color: #53625b; font-size: .78rem; font-weight: 650; }
tbody td { color: #2e443b; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.estimator-section { padding: 90px 0; background: var(--ink); color: var(--white); }
.estimator-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 65px; }
.estimator-intro { position: sticky; inset-block-start: 30px; }
.estimator-intro h2 { max-width: 520px; font-size: clamp(2.1rem,4vw,3.4rem); }
.estimator-intro > p:not(.eyebrow) { max-width: 460px; color: #c0c8c0; font-size: .9rem; }
.estimate-result { margin-top: 38px; padding: 22px; border: 1px solid #53635a; background: #182a26; }
.result-label { display: block; color: #abb6ac; font-family: var(--mono); font-size: .62rem; letter-spacing: .1em; }
.estimate-result strong { display: block; margin: 10px 0 4px; color: var(--acid); font-size: clamp(1.5rem,3vw,2.3rem); letter-spacing: -.04em; }
.estimate-result p { margin-bottom: 0; color: #b7c1b8; font-size: .78rem; }
.estimate-result a { display: inline-block; margin-top: 12px; color: var(--acid); font-size: .8rem; text-decoration: underline; text-underline-offset: 4px; }
.estimate-form { display: grid; gap: 18px; padding: 26px; background: var(--white); color: var(--ink); }
label { display: grid; gap: 7px; color: #34463e; font-size: .78rem; font-weight: 700; }
input:not([type="checkbox"]), select, textarea { width: 100%; min-height: 45px; padding: 10px 12px; border: 1px solid #c9cdc3; border-radius: 0; background: #fff; color: var(--ink); font-size: .88rem; font-weight: 450; }
textarea { min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8a948d; }
.form-row, .form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.addon-fieldset, .choice-fieldset { min-width: 0; margin: 0; padding: 16px; border: 1px solid #d7dbd2; }
.addon-fieldset legend, .choice-fieldset legend { padding: 0 5px; color: var(--ink); font-size: .8rem; font-weight: 750; }
.addon-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
.addon-option { display: flex; align-items: flex-start; gap: 9px; min-height: 44px; padding: 10px; border: 1px solid #e0e2dc; color: #46564e; font-size: .72rem; line-height: 1.35; cursor: pointer; }
.addon-option:has(input:checked) { border-color: #718548; background: #f1f8d9; }
.addon-option input, .check-line input { flex: 0 0 auto; accent-color: #617a37; }
.addon-option small { display: block; margin-top: 3px; color: #7a867e; font-size: .61rem; }
.check-line { display: flex; align-items: center; gap: 10px; color: #46564e; font-size: .77rem; font-weight: 600; }
.estimator-cta { justify-content: space-between; width: 100%; }
.custom-callout { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
.custom-callout h2 { max-width: 620px; font-size: clamp(2rem,4vw,3rem); }
.custom-callout p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: #57655d; }
.custom-callout .button { flex: 0 0 auto; }
.process-band + .faq-section { padding-top: 100px; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; padding-top: 50px; padding-bottom: 95px; }
.about-monogram { position: relative; display: grid; place-items: center; min-height: 390px; overflow: hidden; background: var(--coral); color: var(--ink); }
.about-monogram::before, .about-monogram::after { position: absolute; width: 280px; height: 280px; border: 1px solid #12232140; border-radius: 50%; content: ""; }
.about-monogram::before { transform: translate(35px,25px); }
.about-monogram::after { transform: translate(68px,49px); }
.about-monogram > span { font-family: var(--serif); font-size: 8rem; letter-spacing: -.12em; line-height: 1; }
.about-monogram small { position: absolute; inset-inline-start: 20px; inset-block-end: 17px; font-family: var(--mono); font-size: .6rem; letter-spacing: .1em; }
.about-monogram i { position: absolute; inset-inline-end: 19px; inset-block-start: 18px; width: 15px; height: 15px; background: var(--acid); }
.about-copy h2 { max-width: 600px; }
.about-copy p:not(.eyebrow) { max-width: 620px; color: #56645d; }
.about-copy .text-link { margin-top: 11px; }
.values-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; padding-top: 27px; padding-bottom: 55px; border-top: 1px solid var(--line); }
.values-strip > div { padding: 15px 10px; }
.values-strip span { color: #718078; font-family: var(--mono); font-size: .65rem; }
.values-strip h3 { margin-top: 18px; }
.values-strip p { max-width: 280px; margin: 0; color: #657169; font-size: .82rem; }
.custom-form-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 55px; padding-top: 15px; padding-bottom: 60px; align-items: start; }
.form-sidebar { position: sticky; inset-block-start: 25px; }
.step-indicators { display: grid; gap: 0; margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.step-indicators li { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); color: #879087; font-size: .8rem; }
.step-indicators li span:first-child { font-family: var(--mono); font-size: .65rem; }
.step-indicators li[aria-current="step"] { color: var(--ink); font-weight: 750; }
.step-indicators li[aria-current="step"] span:first-child { color: var(--coral); }
.sidebar-note { display: flex; align-items: flex-start; gap: 12px; margin: 26px 0; padding: 15px; background: var(--acid); }
.sidebar-note > span { font-family: var(--serif); font-size: 1.4rem; }
.sidebar-note p { margin: 0; font-size: .76rem; }
.lead-form { display: grid; gap: 17px; padding: 27px; border: 1px solid var(--line); background: var(--white); }
.lead-form > h2 { margin-bottom: 4px; font-size: 1.8rem; }
.lead-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.lead-form fieldset > legend { display: grid; gap: 9px; width: 100%; margin-bottom: 25px; color: #748078; font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; }
.lead-form fieldset > legend strong { color: var(--ink); font-family: var(--sans); font-size: 1.7rem; font-weight: 650; letter-spacing: -.04em; line-height: 1.1; }
.lead-form .choice-fieldset { display: flex; flex-wrap: wrap; gap: 8px 17px; padding: 14px; }
.lead-form .choice-fieldset > legend { width: auto; margin: 0 0 0 4px; font-family: var(--sans); font-size: .78rem; letter-spacing: normal; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; gap: 10px; }
.step-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 24px; }
.step-count { margin-inline-end: auto; color: #7b867f; font-family: var(--mono); font-size: .64rem; }
.form-status { min-height: 1.2em; margin: 0; color: #31533a; font-size: .83rem; }
.form-status[data-error="true"] { color: #a13224; }
.form-footer-note { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; color: #68746c; font-size: .8rem; }
.form-footer-note p { margin: 0; }
.honeypot { position: absolute !important; inset-inline-start: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 55px; padding-top: 20px; padding-bottom: 70px; align-items: start; }
.contact-options { border-top: 1px solid var(--line); }
.contact-option { display: grid; grid-template-columns: 38px 1fr 26px; gap: 12px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-option:hover h2 { color: #55715f; }
.option-number { color: #7e8981; font-family: var(--mono); font-size: .65rem; }
.contact-option h2 { margin: 0 0 7px; font-size: 1.17rem; letter-spacing: -.03em; }
.contact-option p { margin: 0; color: #65716a; font-size: .78rem; }
.contact-option > span:last-child { padding-top: 3px; }
.contact-grid .lead-form .eyebrow { margin-bottom: 0; }
.booking-layout { padding-top: 20px; padding-bottom: 90px; }
.booking-state { max-width: 740px; padding: 35px; border: 1px solid var(--line); background: var(--white); }
.booking-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 20px; background: var(--acid); font-size: 1.2rem; }
.booking-state h2 { font-size: 2rem; }
.booking-state p { max-width: 600px; margin-bottom: 22px; color: #5d6b63; }
.calendly-host, .calendly-inline-widget { width: 100%; min-height: 760px; background: var(--white); }
.booking-confirmation { margin-top: 18px; padding: 15px 18px; border-inline-start: 4px solid #638247; background: #eef4df; color: #31492d; font-size: .9rem; }
.not-found { min-height: 460px; padding-top: 100px; }
.not-found h1 { font-size: clamp(3rem,7vw,6rem); }

/* Admin */
.admin-body { min-height: 100vh; padding: 32px 0; background: #e9e8df; }
.admin-shell { width: min(1080px, calc(100% - 48px)); margin-inline: auto; }
.admin-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 60px; font-size: .75rem; letter-spacing: .1em; }
.admin-brand span { display: grid; place-items: center; width: 34px; height: 34px; background: var(--ink); color: var(--acid); font-family: var(--serif); font-size: .8rem; letter-spacing: -.08em; }
.admin-shell h1 { margin-bottom: 8px; font-size: 3.4rem; }
.admin-intro { margin-bottom: 30px; color: #66736b; }
.admin-message, .admin-login, #admin-panel { padding: 28px; border: 1px solid var(--line); background: var(--white); }
.admin-message h2 { font-size: 1.6rem; }
.admin-message a { display: inline-block; margin-top: 10px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.admin-login { display: grid; gap: 14px; max-width: 450px; }
.admin-login label { font-weight: 700; }
.admin-login .button { width: fit-content; }
.admin-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-panel-heading h2 { margin-bottom: 3px; font-size: 1.7rem; }
.admin-panel-heading p { margin: 0; color: #748078; font-size: .82rem; }
.lead-list { display: grid; gap: 11px; }
.lead-card { padding: 18px; border: 1px solid var(--line); background: #fbfaf5; }
.lead-card-top { display: flex; justify-content: space-between; align-items: start; gap: 18px; }
.lead-card h3 { margin: 0 0 3px; }
.lead-card p { margin: 0; color: #65716a; font-size: .8rem; }
.lead-card dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 18px 0 0; }
.lead-card dt { color: #77837b; font-family: var(--mono); font-size: .6rem; text-transform: uppercase; }
.lead-card dd { margin: 3px 0 0; color: #35463e; font-size: .77rem; overflow-wrap: anywhere; }
.lead-card select { width: auto; min-width: 145px; min-height: 38px; padding: 7px; }
.admin-pricing { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--line); }
.pricing-editor-group { margin-top: 24px; }
.pricing-editor-group h3 { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.pricing-editor-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pricing-editor-section-heading .button { min-height: 38px; padding: 8px 11px; font-size: .7rem; }
.pricing-config-card { margin: 12px 0; padding: 16px; border: 1px solid var(--line); background: #fbfaf5; }
.pricing-config-heading { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.pricing-config-heading h4 { margin: 0; color: #536159; font-family: var(--mono); font-size: .68rem; font-weight: 500; }
.pricing-config-heading .button { min-height: 34px; padding: 7px 9px; color: #783c30; font-size: .65rem; }
.pricing-editor-fields { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 11px; }
.pricing-field { min-width: 0; font-size: .65rem; }
.pricing-field input:not([type="checkbox"]), .pricing-field textarea { min-height: 38px; padding: 7px; font-size: .78rem; }
.pricing-field textarea { min-height: 74px; }
.pricing-field-wide { grid-column: span 2; }
.pricing-field:has(input[type="checkbox"]) { display: flex; align-items: center; gap: 8px; min-height: 38px; }
.pricing-field input[type="checkbox"] { accent-color: #617a37; }
.pricing-editor-row { display: grid; grid-template-columns: minmax(150px,1fr) 130px 130px; gap: 12px; align-items: center; padding: 9px 0; border-bottom: 1px solid #e7e8e1; }
.pricing-editor-row > span { color: #526159; font-size: .82rem; }
.pricing-editor-row label { font-size: .63rem; }
.pricing-editor-row input { min-height: 37px !important; }

@media (max-width: 980px) {
  .hero { gap: 36px; min-height: 570px; }
  .hero-art { min-height: 390px; padding: 21px; }
  .path-node { margin-inline-start: clamp(12px, 6%, 28px); }
  .path-node-end { margin-inline-start: clamp(18px, 8%, 42px); }
  .work-band { gap: 35px; padding: 50px; }
  .process-inner, .estimator-grid { gap: 40px; }
  .about-grid { gap: 55px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: .76rem; }
}

@media (max-width: 760px) {
  .section-shell, .site-header, .footer-main, .footer-bottom, .ticker-inner, .no-script-nav { width: min(100% - 36px, var(--page)); }
  .site-header { min-height: 72px; gap: 10px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-text { font-size: .76rem; }
  .brand-text small { font-size: .48rem; }
  .header-actions { gap: 7px; }
  .header-book { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav { position: absolute; inset-inline: 0; inset-block-start: calc(100% + 1px); display: none; align-items: stretch; gap: 0; padding: 9px 18px; border: 1px solid var(--line); background: var(--paper); box-shadow: 0 12px 18px #12232118; }
  .main-nav[data-open="true"] { display: flex; flex-direction: column; }
  .main-nav a { padding: 13px 4px; border-bottom: 1px solid #e4e4db; font-size: .9rem; }
  .main-nav a:last-child { border-bottom: 0; }
  .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding-top: 66px; padding-bottom: 94px; }
  .hero h1 { font-size: clamp(3.05rem,12vw,5.6rem); }
  .hero-art { min-height: 365px; }
  .hero-stamp { inset-block-end: 22px; }
  .ticker-inner { justify-content: flex-start; overflow: hidden; gap: 21px; }
  .ticker-inner span:nth-of-type(n+3), .ticker-inner i:nth-of-type(n+3) { display: none; }
  .section-block { padding-top: 74px; padding-bottom: 74px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; }
  .section-heading-row .text-link { margin: 0; }
  .service-grid, .package-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .package-card { min-height: 285px; }
  .work-band { grid-template-columns: 1fr; gap: 38px; width: 100%; padding: 54px 18px; }
  .work-preview { min-height: 310px; }
  .process-band { padding: 72px 0; }
  .process-inner, .faq-section, .estimator-grid { grid-template-columns: 1fr; gap: 35px; }
  .estimator-intro { position: static; }
  .faq-section { padding-top: 0; }
  .cta-section { align-items: flex-start; flex-direction: column; padding-top: 48px; padding-bottom: 50px; }
  .page-hero { padding-top: 70px; padding-bottom: 38px; }
  .page-hero h1 { font-size: clamp(2.85rem,10.5vw,4.8rem); }
  .service-detail { grid-template-columns: 1fr 30px; gap: 10px; }
  .detail-number { grid-column: 1 / -1; }
  .service-detail ul { grid-template-columns: 1fr; }
  .note-band { grid-template-columns: 34px 1fr; }
  .note-band .text-link { grid-column: 2; }
  .case-visual { min-height: 355px; }
  .case-screen { width: 82%; min-height: 275px; padding: 13px; }
  .screen-body { padding-top: 40px; }
  .case-details { grid-template-columns: 1fr; gap: 26px; }
  .comparison-section { padding-bottom: 70px; }
  .estimator-section { padding: 66px 0; }
  .estimate-form, .lead-form { padding: 19px; }
  .addon-list, .choice-grid { grid-template-columns: 1fr; }
  .custom-callout { align-items: flex-start; flex-direction: column; padding-top: 52px; padding-bottom: 52px; }
  .about-grid { grid-template-columns: 1fr; gap: 35px; padding-top: 18px; padding-bottom: 65px; }
  .about-monogram { min-height: 280px; }
  .values-strip { grid-template-columns: 1fr; gap: 0; }
  .values-strip > div { border-bottom: 1px solid var(--line); }
  .custom-form-layout, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .form-sidebar { position: static; }
  .step-indicators { grid-template-columns: repeat(3,1fr); }
  .step-indicators li { gap: 6px; font-size: .68rem; }
  .form-grid, .form-row { grid-template-columns: 1fr; }
  .form-footer-note { align-items: flex-start; flex-direction: column; }
  .booking-layout { padding-bottom: 60px; }
  .booking-state { padding: 22px; }
  .calendly-host, .calendly-inline-widget { min-height: 650px; }
  .footer-main { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .lead-card-top { flex-direction: column; }
  .lead-card dl { grid-template-columns: 1fr 1fr; }
  .pricing-editor-row { grid-template-columns: 1fr 1fr; }
  .pricing-editor-row > span { grid-column: 1 / -1; }
  .pricing-editor-fields { grid-template-columns: 1fr 1fr; }
  .pricing-editor-section-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .section-shell, .site-header, .footer-main, .footer-bottom, .ticker-inner, .no-script-nav { width: calc(100% - 28px); }
  .header-actions { gap: 5px; }
  .language-toggle { min-width: 54px; padding: 8px; }
  .menu-toggle { padding: 8px; }
  .hero-art { min-height: 335px; padding: 18px; }
  .path-node { width: 92%; margin-inline-start: 1%; font-size: .82rem; }
  .path-node-end { margin-inline-start: 8%; }
  .path-connector { margin-inline-start: 17%; }
  .estimate-form, .lead-form { padding: 15px; }
  .case-details dl div { grid-template-columns: 75px 1fr; }
  .screen-nav { font-size: .48rem; }
  .screen-footer { font-size: .48rem; }
}

html[dir="rtl"] .hero-art, html[dir="rtl"] .work-preview, html[dir="rtl"] .case-visual, html[dir="rtl"] .about-monogram { direction: ltr; }
html[dir="rtl"] .hero-art .art-caption, html[dir="rtl"] .service-card, html[dir="rtl"] .process-list, html[dir="rtl"] .step-indicators, html[dir="rtl"] .package-card { direction: rtl; }
html[dir="rtl"] .hero h1, html[dir="rtl"] .page-hero h1 { letter-spacing: -.035em; }
html[dir="rtl"] .work-preview, html[dir="rtl"] .case-screen { transform: rotate(1deg); }
html[dir="rtl"] .preview-content { inset-inline-start: 12%; }
html[dir="rtl"] .about-monogram > span { letter-spacing: -.1em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

