:root {
  --yellow: #ffc20a;
  --yellow-deep: #f7b900;
  --ink: #161616;
  --muted: #616161;
  --line: #dedede;
  --surface: #ffffff;
  --soft: #f6f6f4;
  --radius: 10px;
  --shadow: 0 14px 40px rgba(14, 14, 14, .08);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: calc(100% - 64px);
  max-width: 1640px;
  padding-right: 24px;
  padding-left: 24px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }
.hand-note { font-family: var(--font-hand); }
.eyebrow { margin: 0 0 14px; font-size: 14px; font-weight: 800; letter-spacing: .055em; }
.section-space { padding: 108px 0; }

.section-title {
  position: relative;
  display: inline-block;
  margin: 0 0 26px;
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.045em;
}

.section-title::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 78px;
  height: 4px;
  border-radius: 4px;
  background: var(--yellow);
  transform: rotate(-1.5deg);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading-row .section-title { margin-bottom: 0; text-transform: uppercase; font-size: clamp(32px, 2.4vw, 43px); }
.section-heading-row .section-title::after { display: none; }

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 31px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .015em;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(255, 194, 10, .45); outline-offset: 3px; }
.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 20px rgba(255, 194, 10, .22); }
.btn-primary:hover { background: #ffcc32; box-shadow: 0 12px 26px rgba(255, 194, 10, .3); }
.btn-outline { border-color: #b8b8b8; background: rgba(255,255,255,.65); }
.btn-outline:hover { border-color: var(--ink); background: #fff; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #303030; box-shadow: 0 10px 22px rgba(0,0,0,.2); }
.btn-compact { min-height: 47px; padding: 12px 21px; font-size: 12px; }
.btn-sm-wide { min-width: 178px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 92px;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(0,0,0,.07);
  backdrop-filter: blur(14px);
  transition: height .25s ease, box-shadow .25s ease;
}

.site-header.scrolled { height: 86px; box-shadow: 0 9px 30px rgba(0,0,0,.06); }
.site-header > .container { height: 100%; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark { position: relative; display: inline-grid; width: 43px; height: 43px; place-items: center; color: var(--ink); font-size: 37px; }
.brand-mark::before { content: ""; position: absolute; inset: 13px 7px 1px; z-index: -1; border-radius: 3px; background: var(--yellow); }
.brand-mark .bi-hammer { position: absolute; right: 10px; bottom: 7px; color: #fff; font-size: 13px; transform: rotate(-25deg); }
.brand-copy { display: flex; flex-direction: column; font-size: 15px; line-height: 1.05; letter-spacing: -.025em; }
.brand-copy strong:last-child { margin-top: 3px; font-size: 13px; }

.main-nav { display: flex; align-items: stretch; align-self: stretch; gap: clamp(25px, 2.1vw, 42px); }
.main-nav a { position: relative; display: grid; align-items: center; font-size: 14px; font-weight: 700; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; right: 50%; bottom: 14px; left: 50%; height: 2px; background: var(--yellow); transition: left .2s ease, right .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; left: 0; }

.header-phone { display: inline-flex; min-height: 52px; align-items: center; gap: 13px; padding: 11px 24px; border-radius: 8px; background: var(--yellow); font-size: 14px; font-weight: 800; white-space: nowrap; }
.header-phone:hover { background: #ffcc32; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; border-radius: 7px; background: var(--yellow); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: .25s ease; }

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #fafafa 0%, rgba(255,255,255,.93) 38%, rgba(235,233,228,.58) 100%);
}

.hero-room { position: absolute; inset: 0; opacity: .85; pointer-events: none; filter: blur(.2px); }
.hero-room::before { content: ""; position: absolute; right: -3%; bottom: 155px; width: 60%; height: 50%; background: linear-gradient(155deg, rgba(255,255,255,.4), rgba(204,199,190,.32)); clip-path: polygon(0 25%, 100% 0, 100% 100%, 6% 100%); }
.room-frame { position: absolute; top: 90px; width: 115px; height: 250px; border: 16px solid rgba(190,184,173,.22); background: rgba(225,223,218,.3); filter: blur(3px); }
.room-frame-one { right: 15%; }
.room-frame-two { right: 1%; top: 160px; height: 190px; }
.room-counter { position: absolute; right: -6%; bottom: 160px; width: 60%; height: 125px; background: rgba(218,215,208,.55); box-shadow: 0 -9px 15px rgba(80,70,60,.08); filter: blur(3px); }

.hero-container { position: relative; z-index: 2; }
.hero-row { min-height: 750px; }
.hero-copy-col { padding-top: 64px; padding-bottom: 100px; }
.hero-note { margin: 0 0 36px 44px; font-size: 26px; font-weight: 600; transform: rotate(-4deg); }
.hero-note span { display: inline-block; width: 32px; height: 14px; margin-right: 8px; border-top: 1.5px solid var(--ink); border-radius: 50%; transform: rotate(-14deg); }

.hero h1 { max-width: 760px; margin: 0 0 28px; font-size: clamp(52px, 4.25vw, 78px); font-weight: 800; line-height: 1.02; letter-spacing: -.06em; }
.hero h1 em { display: block; margin-top: 4px; color: var(--yellow-deep); font-family: var(--font-hand); font-size: .92em; font-weight: 600; line-height: .94; letter-spacing: -.03em; white-space: nowrap; }
.hero-lead { margin: 0 0 34px; color: #343434; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.customer-proof { display: flex; align-items: center; gap: 11px; margin: 36px 0 0; font-size: 13px; }
.customer-proof i { color: var(--yellow-deep); font-size: 20px; }

.hero-visual-col { align-self: stretch; }
.hero-visual { position: relative; height: 100%; min-height: 750px; }
.hero-person { position: absolute; z-index: 3; bottom: 0; left: 36%; width: auto; height: 720px; max-width: none; transform: translateX(-50%); filter: drop-shadow(0 18px 22px rgba(0,0,0,.13)); }
.paint-swipe { position: absolute; z-index: 1; top: 110px; right: 1%; width: 390px; height: 430px; background: var(--yellow); border-radius: 48% 17% 53% 28%; clip-path: polygon(8% 5%, 78% 0, 100% 15%, 92% 25%, 100% 37%, 91% 48%, 99% 64%, 83% 73%, 91% 92%, 18% 100%, 6% 87%, 13% 67%, 1% 54%, 11% 34%, 0 20%); transform: rotate(-8deg); opacity: .86; }
.paint-swipe::after { content: ""; position: absolute; inset: 16% -5% 8% 2%; background: linear-gradient(135deg, transparent 4%, rgba(255,255,255,.18) 5%, transparent 12%, transparent 76%, rgba(255,255,255,.2)); }
.hero-promise { position: absolute; z-index: 4; top: 183px; right: 7%; margin: 0; font-size: 31px; font-weight: 700; line-height: 1.15; text-align: center; transform: rotate(-5deg); }
.hero-promise::after { content: ""; display: block; width: 54px; height: 12px; margin: 4px auto 0; border-top: 3px solid var(--ink); border-radius: 50%; transform: rotate(-4deg); }
.drawn-arrow { position: absolute; z-index: 4; top: 205px; left: -38px; width: 118px; height: 68px; overflow: hidden; color: transparent; border-top: 3px solid var(--ink); border-radius: 55% 50% 0 0; transform: rotate(15deg); }
.drawn-arrow::after { content: ""; position: absolute; top: -4px; right: 1px; width: 14px; height: 14px; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); transform: rotate(35deg); }

.quality-card { position: absolute; z-index: 9; right: 1%; bottom: 138px; display: flex; min-width: 230px; align-items: center; gap: 15px; padding: 21px 20px; border: 1px solid rgba(0,0,0,.08); border-radius: 9px; background: #fff; box-shadow: var(--shadow); }
.quality-icon { display: grid; flex: 0 0 auto; width: 42px; height: 48px; place-items: center; color: var(--yellow-deep); font-size: 32px; }
.quality-card strong, .quality-card small { display: block; }
.quality-card strong { margin-bottom: 4px; font-size: 14px; }
.quality-card small { color: var(--muted); font-size: 13px; }

.services-wrap { position: relative; z-index: 8; margin-top: -108px; margin-bottom: 0; }
.services-panel { overflow: hidden; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.service-item { position: relative; min-height: 168px; padding: 29px 18px 22px; text-align: center; }
.service-item:not(:last-child)::after { content: ""; position: absolute; top: 32px; right: 0; width: 1px; height: 80px; background: var(--line); }
.service-item i { display: block; height: 43px; margin-bottom: 5px; font-size: 39px; line-height: 1; }
.service-item h2 { margin: 9px 0 3px; font-size: 15px; font-weight: 800; }
.service-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* About */
.about { position: relative; overflow: hidden; background: linear-gradient(115deg, #fff 0%, #fafafa 53%, #f4f4f4 100%); }
.about.section-space { padding-top: 78px; padding-bottom: 100px; }
.about::after { content: ""; position: absolute; right: 22%; bottom: -90px; width: 410px; height: 200px; border-radius: 50%; background: rgba(255,194,10,.08); filter: blur(30px); }
.about-copy { position: relative; z-index: 3; }
.about-copy > p:not(.eyebrow) { max-width: 450px; margin: 0 0 34px; color: #454545; font-size: 15px; line-height: 1.7; }
.benefit-list { display: grid; gap: 21px; margin: 0 0 36px; padding: 0; list-style: none; }
.benefit-list li { display: flex; align-items: flex-start; gap: 14px; }
.benefit-list > li > i { display: grid; width: 29px; height: 29px; place-items: center; font-size: 21px; }
.benefit-list strong, .benefit-list small { display: block; }
.benefit-list strong { margin-bottom: 2px; font-size: 14px; }
.benefit-list small { color: var(--muted); font-size: 13px; }

.about-portrait-col { align-self: stretch; }
.portrait-wrap { position: relative; min-height: 620px; height: 100%; }
.portrait-wrap img { position: absolute; z-index: 3; bottom: -70px; left: 50%; width: auto; height: 690px; max-width: none; transform: translateX(-50%); filter: drop-shadow(0 13px 15px rgba(0,0,0,.06)); }
.portrait-sun { position: absolute; z-index: 1; top: 155px; left: 50%; width: 355px; height: 355px; border-radius: 51% 46% 48% 42%; background: var(--yellow); transform: translateX(-50%) rotate(-7deg); opacity: .83; }
.portrait-sun::before, .portrait-sun::after { content: ""; position: absolute; border: 2px solid rgba(255,255,255,.45); border-radius: 50%; }
.portrait-sun::before { inset: 15px -20px 20px 12px; }
.portrait-sun::after { inset: -8px 20px 12px -18px; }
.doodle { position: absolute; z-index: 5; font-size: 52px; }
.doodle-hammer { top: 70px; left: 0; transform: rotate(-20deg); }
.doodle-bulb { top: 40px; right: 3px; transform: rotate(14deg); }
.doodle-tape { top: 210px; left: -24px; font-size: 48px; transform: rotate(18deg); }

.about-cards { position: relative; z-index: 4; display: grid; gap: 25px; padding-left: 42px; }
.info-card { min-height: 228px; padding: 33px 35px; border: 1px solid rgba(0,0,0,.055); border-radius: 10px; background: #fff; box-shadow: var(--shadow); }
.info-card-icon { display: block; margin-bottom: 15px; color: var(--yellow-deep); font-size: 35px; line-height: 1; }
.info-card h3 { margin: 0 0 15px; font-size: 19px; line-height: 1.3; }
.info-card p { margin: 0; color: #4d4d4d; font-size: 14px; line-height: 1.6; }
.area-note { margin: -4px 8px 0 0; font-size: 24px; font-weight: 600; text-align: right; transform: rotate(-2deg); }
.area-note span { display: inline-block; margin-left: 8px; font-size: 35px; transform: rotate(-10deg); }

/* Portfolio */
.portfolio { position: relative; z-index: 5; padding-top: 72px; background: #fff; }
.portfolio-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.1fr; grid-template-rows: 265px 265px; gap: 12px; }
.project { position: relative; overflow: hidden; margin: 0; border-radius: 4px; background: #ddd; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.project::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.62)); opacity: 0; transition: opacity .25s ease; }
.project figcaption { position: absolute; z-index: 2; right: 16px; bottom: 14px; left: 16px; color: #fff; font-size: 15px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.project:hover img { transform: scale(1.045); }
.project:hover::after, .project:hover figcaption { opacity: 1; }
.project:hover figcaption { transform: translateY(0); }
.project-kitchen { grid-column: 3; grid-row: 1 / 3; }
.project-pergola { grid-column: 4; grid-row: 2; }
.project-hinge { grid-column: 1; grid-row: 2; }
.project-cabinet { grid-column: 2; grid-row: 2; }
.project-shelf { grid-column: 4; grid-row: 1; }

.pricing-strip { background: #f3f3f1; }
.pricing-inner { min-height: 230px; padding-top: 44px; padding-bottom: 44px; }
.pricing-inner h2 { margin: 0 0 10px; font-size: clamp(29px, 2.4vw, 42px); line-height: 1.2; letter-spacing: -.035em; }
.pricing-inner p:last-child { margin: 0; color: var(--muted); font-size: 15px; }

/* Reviews */
.testimonials { padding-top: 94px; padding-bottom: 76px; background: #fafafa; }
.review-card { height: 100%; min-height: 235px; padding: 31px 34px; border: 1px solid rgba(0,0,0,.06); border-radius: 10px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.045); }
.stars { margin-bottom: 18px; color: var(--yellow-deep); font-size: 21px; letter-spacing: 3px; }
.review-card blockquote { min-height: 78px; margin: 0 0 20px; font-size: 15px; line-height: 1.7; }
.review-card strong { font-size: 14px; }

/* Contact banner */
.contact-banner { position: relative; overflow: hidden; background: var(--yellow); }
.contact-banner::before, .contact-banner::after { content: ""; position: absolute; right: -3%; left: -3%; height: 18px; background: #fff; }
.contact-banner::before { top: -9px; clip-path: polygon(0 40%, 18% 20%, 35% 50%, 58% 8%, 76% 65%, 100% 20%, 100% 100%, 0 100%); }
.contact-banner::after { bottom: -9px; clip-path: polygon(0 0, 100% 0, 100% 66%, 81% 28%, 64% 77%, 43% 40%, 22% 80%, 0 35%); }
.contact-banner-inner { min-height: 0; padding-top: 38px; padding-bottom: 38px; }
.contact-pitch { display: flex; align-items: center; gap: 28px; }
.contact-pitch > i { font-size: 73px; transform: rotate(-13deg); }
.contact-pitch h2 { margin: 0; font-size: clamp(27px, 3vw, 39px); line-height: 1; font-weight: 800; }
.contact-pitch p { margin: -2px 0 0; font-size: 41px; font-weight: 600; line-height: 1; }
.contact-arrow { position: relative; width: 105px; height: 54px; flex: 0 0 auto; margin-left: 15px; overflow: hidden; color: transparent; border-top: 3px solid var(--ink); border-radius: 55% 45% 0 0; transform: rotate(-8deg); }
.contact-arrow::after { content: ""; position: absolute; top: -5px; right: 1px; width: 14px; height: 14px; border-top: 3px solid var(--ink); border-right: 3px solid var(--ink); transform: rotate(38deg); }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 10px; }
.contact-actions { width: min(100%, 460px); margin-left: auto; }
.btn-call { width: 100%; }
.message-link { text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; }

/* Footer */
.site-footer { color: rgba(255,255,255,.82); background: radial-gradient(circle at 50% 0, #2a2a2a, #181818 70%); }
.footer-main { padding: 72px 0 52px; }
.brand-light { color: #fff; margin-bottom: 24px; }
.brand-light .brand-mark { color: var(--yellow); isolation: isolate; }
.brand-light .brand-mark::before { z-index: -1; background: rgba(255,255,255,.12); }
.brand-light .brand-mark .bi-hammer { color: #fff; }
.brand-light + p { color: #c4c4c4; font-size: 13px; line-height: 1.7; }
.socials { display: flex; gap: 22px; margin-top: 24px; }
.socials a { font-size: 17px; }
.socials a:hover, .footer-column a:hover { color: var(--yellow); }
.footer-column { position: relative; padding-left: 45px; }
.footer-column::before { content: ""; position: absolute; top: 0; bottom: 0; left: 13px; width: 1px; background: rgba(255,255,255,.18); }
.footer-column h3 { margin: 0 0 25px; color: #fff; font-size: 14px; letter-spacing: .03em; }
.footer-column nav { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
.footer-column nav a { color: #c5c5c5; font-size: 13px; }
.footer-contact { display: flex; align-items: center; gap: 13px; margin: 0 0 15px; color: #eee; font-size: 13px; }
.footer-contact i { width: 15px; color: var(--yellow); font-size: 15px; text-align: center; }
.hours p { margin: 0 0 13px; color: #c8c8c8; font-size: 13px; }
.hours strong { display: block; color: #fff; font-size: 14px; }
.hours .hand-note { display: block; margin-top: -2px; font-size: 24px; text-align: right; transform: rotate(-4deg); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 23px 0 30px; border-top: 1px solid rgba(255,255,255,.2); color: #aaa; font-size: 12px; }

/* Dialog + toast */
.review-dialog { width: min(520px, calc(100% - 32px)); padding: 0; border: 0; border-radius: 12px; box-shadow: 0 25px 80px rgba(0,0,0,.3); }
.review-dialog::backdrop { background: rgba(0,0,0,.6); backdrop-filter: blur(5px); }
.review-form { position: relative; display: grid; gap: 18px; padding: 38px; }
.review-form h2 { margin: -10px 0 4px; font-size: 29px; }
.review-form label { display: grid; gap: 7px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.review-form input, .review-form textarea { width: 100%; padding: 12px 14px; border: 1px solid #d5d5d5; border-radius: 6px; background: #fafafa; font-size: 13px; font-weight: 500; text-transform: none; resize: vertical; }
.dialog-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #f1f1f1; cursor: pointer; }
.toast { position: fixed; z-index: 2100; right: 22px; bottom: 22px; padding: 14px 20px; border-radius: 8px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: 13px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .3s ease; }
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1199.98px) {
  .main-nav { gap: 20px; }
  .header-phone { padding-inline: 16px; }
  .hero h1 { font-size: clamp(48px, 5vw, 60px); }
  .hero-person { width: auto; height: 680px; }
  .paint-swipe { right: -30px; }
  .quality-card { right: 0; }
  .about-cards { padding-left: 18px; }
  .portrait-wrap img { width: 460px; }
  .portrait-sun { width: 320px; height: 320px; }
}

@media (max-width: 991.98px) {
  .site-header, .site-header.scrolled { height: 72px; }
  .header-phone { margin-left: auto; }
  .menu-toggle { display: block; order: 4; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; top: 72px; right: 0; left: 0; display: flex; max-height: 0; flex-direction: column; align-items: stretch; gap: 0; overflow: hidden; background: #fff; box-shadow: 0 20px 30px rgba(0,0,0,.1); opacity: 0; transition: max-height .35s ease, opacity .25s ease; }
  .main-nav.open { max-height: calc(100vh - 72px); padding: 12px 24px 24px; opacity: 1; }
  .main-nav a { min-height: 49px; border-bottom: 1px solid #ededed; }
  .main-nav a::after { right: auto; bottom: 0; left: 0; width: 0; }
  .main-nav a:hover::after, .main-nav a.active::after { right: auto; width: 44px; }

  .hero { min-height: auto; }
  .hero-row { min-height: auto; }
  .hero-copy-col { z-index: 5; padding-top: 58px; padding-bottom: 20px; text-align: center; }
  .hero-visual-col { align-self: auto; height: auto; }
  .hero-note { display: inline-block; margin: 0 0 25px; }
  .hero h1 { max-width: 720px; margin-right: auto; margin-left: auto; font-size: clamp(42px, 7vw, 60px); }
  .hero-lead { margin-right: auto; margin-left: auto; }
  .hero-actions { justify-content: center; }
  .customer-proof { justify-content: center; }
  .hero-visual { display: flex; height: auto; min-height: 640px; align-items: flex-end; justify-content: center; margin-top: 34px; }
  .hero-person { position: relative; bottom: auto; left: auto; width: min(320px, 72vw); height: auto; max-width: none; margin: 0 auto; transform: none; }
  .paint-swipe { top: 80px; right: 12%; }
  .hero-promise { top: 140px; right: 16%; }
  .drawn-arrow { display: none; }
  .quality-card { right: 8%; bottom: 105px; }
  .services-wrap { margin-top: -72px; }
  .service-item:nth-child(2)::after { display: none; }
  .service-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-item:last-child { border-top: 1px solid var(--line); }

  .about-copy { text-align: center; }
  .about-copy > p:not(.eyebrow) { margin-right: auto; margin-left: auto; }
  .benefit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 650px; margin-right: auto; margin-left: auto; text-align: left; }
  .portrait-wrap { min-height: 620px; }
  .portrait-wrap img { bottom: -96px; width: 470px; height: auto; }
  .portrait-sun { top: 150px; width: 325px; height: 325px; }
  .doodle-hammer { left: 18%; }
  .doodle-bulb { right: 18%; }
  .doodle-tape { left: 12%; }
  .about-cards { grid-template-columns: repeat(2, minmax(0,1fr)); padding-left: 0; }
  .area-note { grid-column: 1 / -1; text-align: center; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 230px); }
  .project-kitchen { grid-column: 1; grid-row: 2 / 4; }
  .project-hinge { grid-column: 2; grid-row: 2; }
  .project-cabinet { grid-column: 2; grid-row: 3; }
  .project-shelf { grid-column: 1; grid-row: 4; }
  .project-pergola { grid-column: 2; grid-row: 4; }
  .contact-banner-inner { padding: 45px 0; }
  .contact-pitch { justify-content: center; }
  .contact-actions { max-width: 450px; margin: 0 auto; }
  .footer-column:nth-child(3)::before { display: none; }
}

@media (max-width: 767.98px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 24px); max-width: none; padding-right: 16px; padding-left: 16px; --bs-gutter-x: 32px; }
  .section-space { padding: 80px 0; }
  .header-phone span { display: none; }
  .header-phone { min-width: 44px; width: 44px; min-height: 44px; justify-content: center; padding: 0; }
  .hero-copy-col { padding-top: 42px; }
  .hero h1 { font-size: clamp(36px, 11vw, 50px); }
  .hero h1 em { white-space: normal; }
  .hero-lead br { display: none; }
  .hero-visual-col { height: auto; }
  .hero-visual { height: auto; min-height: 560px; }
  .hero-person { width: min(310px, 72vw); height: auto; }
  .paint-swipe { top: 70px; right: 4%; width: 300px; height: 320px; }
  .hero-promise { right: 7%; font-size: 24px; }
  .quality-card { right: 0; bottom: 100px; min-width: 175px; padding: 14px; }
  .services-wrap { margin-top: -35px; }
  .service-item { min-height: 150px; }
  .service-item::after { display: none; }
  .service-item:nth-child(odd) { border-right: 1px solid var(--line); }
  .service-item:last-child { border-right: 0; }
  .about-cards { grid-template-columns: 1fr; }
  .area-note { grid-column: auto; }
  .portfolio-grid { grid-template-rows: repeat(4, 175px); }
  .section-heading-row { align-items: flex-start; }
  .section-heading-row .btn { flex: 0 0 auto; }
  .pricing-inner { text-align: center; }
  .contact-pitch > i { font-size: 58px; }
  .contact-pitch p { font-size: 35px; }
  .contact-arrow { display: none; }
  .footer-column { padding-left: calc(var(--bs-gutter-x) * .5); }
  .footer-column::before { display: none; }
}

@media (max-width: 575.98px) {
  .brand-copy { font-size: 12px; }
  .brand-copy strong:last-child { font-size: 10px; }
  .brand-mark { width: 32px; height: 32px; font-size: 27px; }
  .header-inner { gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual-col { height: auto; }
  .hero-visual { height: auto; min-height: 570px; margin-right: -16px; margin-left: -16px; }
  .hero-person { width: min(292px, 72vw); height: auto; }
  .paint-swipe { top: 65px; right: -16px; width: 260px; height: 280px; }
  .hero-promise { top: 118px; right: 8px; font-size: 20px; }
  .quality-card { right: 7px; bottom: 92px; min-width: 157px; }
  .quality-icon { width: 31px; font-size: 26px; }
  .quality-card strong { font-size: 12px; }
  .quality-card small { font-size: 11px; }
  .services-panel { border-radius: 8px; }
  .service-item { padding-inline: 8px; }
  .benefit-list { grid-template-columns: 1fr; max-width: 300px; }
  .portrait-wrap { min-height: 475px; margin-right: -16px; margin-left: -16px; }
  .portrait-wrap img { bottom: -66px; width: 350px; }
  .portrait-sun { top: 120px; width: 240px; height: 240px; }
  .doodle { font-size: 36px; }
  .doodle-hammer { left: 8%; }
  .doodle-bulb { right: 8%; }
  .doodle-tape { left: 2%; }
  .info-card { min-height: auto; }
  .section-heading-row { display: block; }
  .section-heading-row .btn { margin-top: 24px; }
  .portfolio-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .project, .project-kitchen, .project-pergola, .project-hinge, .project-cabinet, .project-shelf { grid-column: auto; grid-row: auto; height: 230px; }
  .project:nth-child(n+5) { display: none; }
  .portfolio-grid.expanded .project:nth-child(n+5) { display: block; }
  .review-card { min-height: 180px; }
  .contact-pitch { gap: 16px; }
  .contact-pitch > i { font-size: 48px; }
  .contact-pitch h2 { font-size: 27px; }
  .contact-pitch p { font-size: 31px; }
  .footer-bottom { flex-direction: column; }
  .review-form { padding: 32px 22px 24px; }
}

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