:root {
  --ink: #171815;
  --cream: #f5f1e8;
  --paper: #fbfaf6;
  --green: #3f713b;
  --green-deep: #234a2b;
  --gold: #cda526;
  --muted: #727269;
  --line: rgba(23, 24, 21, 0.16);
  --font-display: "Grandiflora One";
  --font-sans: "Quicksand";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font-sans), sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: 98px; padding: 8px 4.5vw;
  display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 26px;
  background: rgba(251, 250, 246, .94); border-bottom: 1px solid rgba(23,24,21,.1); backdrop-filter: blur(12px);
}
.brand { height: 82px; display: flex; align-items: center; gap: 13px; }
.brand-mark { position: relative; width: 80px; height: 80px; flex: 0 0 80px; }
.brand-mark > img { width: 80px; height: 80px; object-fit: contain; }
.brand > span:last-child { font-family: var(--font-display); font-size: 16px; letter-spacing: .11em; white-space: nowrap; }
.site-header nav { display: flex; justify-content: center; gap: clamp(11px, 1.4vw, 25px); font-size: 14px; font-weight: 600; letter-spacing: .01em; }
.site-header nav li, .footer-links li { list-style: none; }
.site-header nav a, footer a { transition: color .2s ease; }
.site-header nav a:hover, footer a:hover { color: var(--green); }
.menu-toggle { display: none; }
.header-cta { background: var(--ink); color: white; padding: 14px 20px; font-size: 12px; letter-spacing: .03em; }
body.admin-bar .site-header { top: 32px; }
.logo-intro { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; overflow: hidden; background: var(--paper); pointer-events: none; animation: intro-curtain 4.2s ease-in-out forwards; }
.logo-intro-mark { position: relative; width: min(660px, 78vw); animation: intro-logo 3.4s cubic-bezier(.2,.7,.2,1) both; }
.logo-intro-mark > img { width: 100%; }
.intro-seeds { position: absolute; inset: 0; }
.intro-seeds i { position: absolute; left: 31%; top: 23%; width: 38px; height: 38px; opacity: 0; background: url("../images/graine-pissenlit-logo.png") center / contain no-repeat; animation: intro-seed 2.2s ease-out forwards; animation-delay: calc(.7s + var(--seed-delay)); }
.intro-seeds i:nth-child(1) { --seed-x: 120px; --seed-y: -75px; --seed-r: 130deg; --seed-delay: 0s; }
.intro-seeds i:nth-child(2) { --seed-x: 210px; --seed-y: -125px; --seed-r: 190deg; --seed-delay: .12s; }
.intro-seeds i:nth-child(3) { --seed-x: 300px; --seed-y: -55px; --seed-r: 110deg; --seed-delay: .24s; }
.intro-seeds i:nth-child(4) { --seed-x: 390px; --seed-y: -145px; --seed-r: 220deg; --seed-delay: .36s; }
.intro-seeds i:nth-child(5) { --seed-x: 470px; --seed-y: -25px; --seed-r: 150deg; --seed-delay: .48s; }
.intro-seeds i:nth-child(6) { --seed-x: 560px; --seed-y: -105px; --seed-r: 250deg; --seed-delay: .6s; }
.intro-seeds i:nth-child(7) { --seed-x: 650px; --seed-y: 20px; --seed-r: 170deg; --seed-delay: .72s; }
@keyframes intro-logo { 0% { opacity: 0; transform: scale(.82); } 24%, 76% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.035); } }
@keyframes intro-seed { 0% { opacity: 0; transform: translate(0,0) rotate(20deg) scale(.6); } 18% { opacity: .9; } 82% { opacity: .6; } 100% { opacity: 0; transform: translate(var(--seed-x), var(--seed-y)) rotate(var(--seed-r)) scale(1.1); } }
@keyframes intro-curtain { 0%, 78% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; } }

.hero { min-height: 100svh; position: relative; display: flex; align-items: center; color: white; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,17,12,.78) 0%, rgba(12,17,12,.48) 48%, rgba(12,17,12,.08) 78%); }
.hero-content { position: relative; z-index: 2; width: min(720px, 80vw); margin: 100px 0 0 8vw; }
.eyebrow { margin: 0 0 22px; font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #e4cb72; }
.eyebrow.dark { color: var(--green); }
h1, h2, h3 { font-family: var(--font-display), serif; font-weight: 500; margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(56px, 6.5vw, 96px); line-height: .98; letter-spacing: -.035em; }
.hero-copy { max-width: 610px; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { display: inline-flex; padding: 17px 24px; font-size: 12px; font-weight: 600; letter-spacing: .04em; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.button-light { background: var(--cream); color: var(--ink); }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover, .button-gold:focus-visible { background: var(--green-deep); color: white; transform: translateY(-1px); }
.text-link { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 5px; }
.text-link span { margin-left: 8px; }
.hero-signature { position: absolute; right: 3vw; bottom: 42px; z-index: 2; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; }

.section { padding: 120px 8vw; }
.intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 9vw; align-items: start; }
.intro h2, .section-heading h2, .about h2, .area h2 { font-size: clamp(38px, 4.4vw, 64px); line-height: 1.08; letter-spacing: -.025em; }
.intro-copy { padding-top: 28px; font-size: 16px; line-height: 1.8; color: #4e4f49; }
.intro-copy p { margin: 0 0 20px; }
.gold-link { color: #92720f; display: inline-block; margin-top: 14px; padding-bottom: 4px; border-bottom: 1px solid rgba(146,114,15,.45); font-size: 13px; font-weight: 600; }

.services { padding-top: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.service-card { min-height: 400px; padding: 48px 42px; display: flex; flex-direction: column; background: var(--cream); }
.service-card.featured { background: var(--green-deep); color: white; }
.card-number { margin: 0 0 54px; color: var(--gold); font-size: 12px; }
.service-card h3 { font-size: 31px; line-height: 1.18; margin-bottom: 28px; }
.service-card > p:not(.card-number) { line-height: 1.75; color: #66675f; }
.service-card.featured > p:not(.card-number) { color: rgba(255,255,255,.72); }
.service-card a { margin-top: auto; padding-top: 28px; font-size: 12px; font-weight: 600; }

.projects { background: #efebe1; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 70px; }
.projects-all-link { flex: 0 0 auto; margin-bottom: 8px; box-shadow: 0 8px 24px rgba(82, 65, 10, .14); }
.project-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px 34px; }
.project-card p { margin: 18px 0 7px; color: var(--green); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.project-card h3 { font-size: 28px; line-height: 1.15; margin-bottom: 0; }
.project-image-wrap { overflow: hidden; background: #ddd7ca; }
.project-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.025); }
.project-1 .project-image-wrap { aspect-ratio: 4/3; }
.project-2 { margin-top: 120px; }
.project-2 .project-image-wrap { aspect-ratio: 4/5; }
.project-3 { grid-column: 1 / -1; width: 68%; margin-left: auto; }
.project-3 .project-image-wrap { aspect-ratio: 16/9; }

.process { background: var(--green-deep); color: white; padding: 120px 8vw; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.process-intro h2 { font-size: clamp(42px, 4.7vw, 66px); line-height: 1.08; }
.process-intro > p:last-child { max-width: 440px; color: rgba(255,255,255,.68); line-height: 1.8; }
.steps { border-top: 1px solid rgba(255,255,255,.22); }
.steps article { display: grid; grid-template-columns: 48px 140px 1fr; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.22); align-items: baseline; }
.step-number { color: var(--gold); font-size: 11px; }
.steps h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 500; }
.steps article > p:last-child { color: rgba(255,255,255,.64); line-height: 1.65; font-size: 14px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: center; }
.about-image { aspect-ratio: 4/5; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-copy > p:not(.eyebrow) { font-size: 16px; line-height: 1.85; color: #54564f; }
blockquote { margin: 36px 0; padding-left: 26px; border-left: 2px solid var(--gold); font-family: var(--font-display); font-size: 25px; line-height: 1.35; }

.area { display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; background: var(--cream); align-items: center; }
.area-copy { border-left: 1px solid var(--line); padding-left: 7vw; line-height: 1.8; color: #5b5c55; }
.area-lead { font-family: var(--font-display); font-size: 30px; line-height: 1.3; color: var(--ink); }

.brand-banner { padding: 72px 10vw; background: var(--cream); overflow: hidden; }
.brand-banner img { width: min(1120px, 100%); height: auto; margin: 0 auto; mix-blend-mode: multiply; }

.final-cta { position: relative; overflow: hidden; min-height: 590px; padding: 110px 8vw; background: #000; color: white; display: flex; align-items: center; }
.final-cta > img { position: absolute; width: min(470px, 40vw); height: 520px; object-fit: contain; right: 4vw; bottom: 22px; opacity: .9; }
.final-cta > div { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(46px, 5vw, 72px); line-height: 1.06; }
.final-cta p:not(.eyebrow) { color: rgba(255,255,255,.7); margin-bottom: 30px; }

.floating-actions { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 60; display: flex; flex-direction: column; box-shadow: 0 8px 30px rgba(0,0,0,.14); }
.floating-actions a { width: 46px; height: 46px; display: grid; place-items: center; background: var(--paper); border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.floating-actions a:hover { background: var(--gold); }

footer { min-height: 220px; padding: 35px 8vw; display: flex; justify-content: space-between; align-items: center; background: #000; color: rgba(255,255,255,.66); font-size: 11px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand img { width: 120px; height: 150px; object-fit: contain; }
.footer-brand > div { display: block; }
.footer-brand strong { color: white; letter-spacing: .16em; font-family: var(--font-display); }
.footer-brand p { margin: 9px 0 0; }
.footer-links { display: flex; gap: 25px; flex-wrap: wrap; justify-content: flex-end; }

.inner-main { padding-top: 98px; }
.page-intro { min-height: 560px; padding: 130px 8vw 90px; background: var(--green-deep); color: white; display: flex; flex-direction: column; justify-content: flex-end; }
.page-intro h1 { max-width: 980px; font-size: clamp(48px, 6vw, 82px); }
.page-intro > p:last-child { max-width: 760px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.8; }
.listing-section { padding: 90px 8vw 120px; }
.listing-card { display: grid; grid-template-columns: 60px 1fr 30px; gap: 34px; align-items: center; padding: 45px 0; border-bottom: 1px solid var(--line); }
.listing-card:first-child { border-top: 1px solid var(--line); }
.listing-card > span { color: var(--gold); font-size: 12px; }
.listing-card h2 { font-size: 32px; margin-bottom: 10px; }
.listing-card p { max-width: 780px; margin: 0; color: var(--muted); line-height: 1.7; }
.listing-card b { color: var(--green); font-size: 22px; }
.detail-section { padding: 100px 8vw 130px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; }
.detail-section > div { font-family: var(--font-display); font-size: 25px; line-height: 1.65; }
.detail-section aside { background: var(--cream); padding: 45px; }
.detail-section aside h2 { font-size: 26px; }
.detail-section ul { list-style: none; margin: 30px 0; padding: 0; }
.detail-section li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.archive-grid { padding: 100px 8vw 130px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 70px 35px; }
.archive-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.archive-card p { margin: 18px 0 8px; color: var(--green); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.archive-card h2 { font-size: 29px; }
.archive-card span { color: #92720f; font-size: 12px; }
.archive-pagination { padding: 35px 8vw; background: var(--cream); text-align: center; }
.archive-pagination-top { border-bottom: 1px solid var(--line); }
.archive-pagination-bottom { padding-top: 45px; padding-bottom: 65px; border-top: 1px solid var(--line); }
.archive-pagination > p { margin: 0 0 18px; color: var(--green); font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.archive-pagination .navigation { margin: 0; }
.archive-pagination .nav-links { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.archive-pagination .page-numbers { min-width: 44px; min-height: 44px; padding: 12px 15px; display: inline-flex; justify-content: center; align-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 600; }
.archive-pagination a.page-numbers:hover, .archive-pagination a.page-numbers:focus-visible { background: var(--gold); border-color: var(--gold); }
.archive-pagination .page-numbers.current { background: var(--green-deep); border-color: var(--green-deep); color: white; }
.archive-pagination .prev, .archive-pagination .next { min-width: 230px; background: var(--gold); border-color: var(--gold); }
.blog-grid .archive-card:first-child { grid-column: span 2; }
.blog-grid .archive-card:first-child img { aspect-ratio: 16/7; }
.about-page { padding: 110px 8vw 130px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.about-page > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-page h2 { font-size: 40px; }
.about-page p { line-height: 1.9; color: #5b5c55; }
.contact-panel { padding: 110px 8vw 140px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.contact-panel > div { background: var(--cream); padding: 55px; display: flex; flex-direction: column; gap: 20px; }
.contact-panel h2 { font-size: 32px; }
.contact-email { color: var(--green); font-size: clamp(16px, 2vw, 24px); word-break: break-word; }
.entry-page { padding-top: 90px; }
.entry-heading { padding: 100px 8vw 75px; }
.entry-heading h1 { max-width: 980px; font-size: clamp(46px, 6vw, 78px); }
.entry-heading > p:last-child { max-width: 760px; line-height: 1.8; font-size: 18px; color: var(--muted); }
.entry-hero { width: 84%; max-height: 760px; margin: 0 auto; object-fit: cover; }
.entry-content { max-width: 820px; margin: 0 auto; padding: 85px 30px 130px; font-family: var(--font-display); font-size: 23px; line-height: 1.8; }
.entry-content .button { font-family: var(--font-sans); margin-top: 20px; }

.service-visual-grid { padding: 100px 8vw 130px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 55px 32px; }
.service-visual-card { background: var(--cream); }
.service-visual-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; }
.service-visual-card img { width: 100%; height: 360px; object-fit: cover; }
.service-visual-card:first-child img { height: 100%; min-height: 450px; }
.service-visual-card > div { padding: 36px; }
.service-visual-card span { color: var(--gold); font-size: 11px; }
.service-visual-card h2 { margin: 15px 0; font-size: 32px; }
.service-visual-card p { color: var(--muted); line-height: 1.75; }
.service-visual-card b { display: inline-block; margin-top: 18px; color: var(--green); font-size: 12px; }
.service-hero { width: 84%; max-height: 760px; margin: 80px auto 0; object-fit: cover; }
.entry-content-full { max-width: 980px; margin: 0 auto; padding: 90px 30px 130px; }
.entry-content-full > .button { margin-top: 45px; }
.wp-content .wp-block-button__link,
.wp-content a.wp-block-button__link,
.wp-content .wp-element-button {
  background: var(--gold);
  color: var(--ink);
  border: 0;
  border-radius: 0;
  padding: 16px 24px;
  font-family: var(--font-sans), sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.wp-content .wp-block-button__link:hover,
.wp-content .wp-block-button__link:focus-visible,
.wp-content .wp-element-button:hover,
.wp-content .wp-element-button:focus-visible {
  background: var(--green-deep);
  color: white;
  transform: translateY(-1px);
}
.wp-content { font-size: 17px; line-height: 1.85; color: #454740; }
.wp-content h1, .wp-content h2, .wp-content h3, .wp-content h4 { color: var(--ink); line-height: 1.25; margin: 2.2em 0 .8em; }
.wp-content h2 { font-size: clamp(32px, 4vw, 48px); }
.wp-content h3 { font-size: 28px; }
.wp-content p { margin: 0 0 1.5em; }
.wp-content ul, .wp-content ol { padding-left: 1.4em; margin: 0 0 1.8em; }
.wp-content a { color: #80630b; text-decoration: underline; text-underline-offset: 3px; }
.wp-content figure { margin: 40px 0; }
.wp-content img { width: 100%; height: auto; }
.wp-content figcaption { padding-top: 9px; color: var(--muted); font-size: 12px; text-align: center; }
.deco-about-portrait { max-width: 620px; margin: 0 auto 70px !important; }
.deco-about-portrait img { aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.wp-content .wp-block-gallery, .wp-content .blocks-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 0; list-style: none; }
.wp-content .columns-1 { grid-template-columns: 1fr; }
.wp-content .columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wp-content .columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wp-content .wp-block-gallery.has-nested-images > figure.wp-block-image,
.wp-content .wp-block-gallery figure,
.wp-content .blocks-gallery-item {
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  display: block !important;
  flex: none !important;
}
.wp-content .wp-block-gallery.has-nested-images > figure.wp-block-image > img,
.wp-content .wp-block-gallery img,
.wp-content .blocks-gallery-item img {
  width: 100% !important;
  height: auto !important;
  min-height: 0;
  display: block !important;
  flex: none !important;
  align-self: auto !important;
  object-fit: contain;
}
.wp-content .wp-block-gallery figcaption,
.wp-content .blocks-gallery-item figcaption {
  position: static !important;
  width: 100% !important;
  max-height: none !important;
  padding: 9px 4px 4px !important;
  background: none !important;
  color: var(--muted) !important;
  font-size: 11px !important;
}
.wp-content .wp-block-gallery > .blocks-gallery-caption { grid-column: 1 / -1; }
.deco-suite-parentale-comparison { align-items: start; }
.deco-suite-parentale-comparison img { aspect-ratio: 4 / 3; object-fit: cover !important; }
.deco-suite-parentale-comparison figcaption { font-size: 13px !important; line-height: 1.55; }
.deco-conception-gallery { align-items: start; }
.deco-conception-gallery img { aspect-ratio: 16 / 10; object-fit: cover !important; }
.deco-conception-gallery > figure:last-of-type { grid-column: 1 / -1; }
.deco-conception-gallery > figure:last-of-type img { aspect-ratio: 16 / 9; }
.wp-content .wp-block-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px; align-items: start; }
.wp-content hr { margin: 60px 0; border: 0; border-top: 1px solid var(--line); }
.wp-content blockquote { font-size: 25px; }
.visit-conseil-cta { margin: 34px 0 50px; }
.about-original { max-width: 1080px; }
.about-portrait { padding: 105px 8vw 25px; display: grid; grid-template-columns: minmax(280px, .8fr) 1.2fr; gap: 8vw; align-items: center; }
.about-portrait img { width: 100%; max-width: 520px; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.about-portrait h2 { font-size: clamp(38px, 4.5vw, 62px); line-height: 1.12; }
.about-portrait > div > p:last-child { max-width: 620px; color: var(--muted); line-height: 1.8; }
.methods-callout { margin-top: 75px; padding: 45px; background: var(--cream); border-left: 4px solid var(--gold); }
.methods-callout h2 { font-size: 36px; margin-bottom: 16px; }
.methods-callout > p:not(.eyebrow) { max-width: 680px; line-height: 1.75; }
.methods-callout .button { margin-top: 16px; }
.contact-layout { padding: 105px 8vw 135px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: start; }
.contact-layout > div > h2 { font-size: 42px; line-height: 1.2; }
.contact-layout > div > p { line-height: 1.8; color: var(--muted); }
.contact-social { display: flex; flex-direction: column; gap: 12px; margin-top: 35px; color: var(--green); font-weight: 600; }
.contact-form { padding: 48px; background: var(--cream); display: flex; flex-direction: column; gap: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; font-size: 13px; font-weight: 600; }
.contact-form label span { color: var(--muted); font-weight: 400; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: var(--paper); color: var(--ink); padding: 14px 15px; font: inherit; font-weight: 400; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
.contact-form .button { border: 0; cursor: pointer; align-self: flex-start; }
.form-note { margin: -5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.contact-honeypot { position: absolute !important; left: -9999px !important; }
.consent-field { flex-direction: row !important; align-items: flex-start; font-weight: 400 !important; }
.consent-field input { width: auto; margin-top: 3px; }
.form-success, .form-error { margin: 0 0 22px; padding: 18px 20px; border-left: 4px solid var(--green); background: #edf5ea; line-height: 1.6; }
.form-error { border-color: #a34b3f; background: #f8ece9; }
.method-article-grid { padding: 105px 8vw 135px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; background: var(--cream); }
.method-blog-section { padding: 95px 8vw 110px; background: var(--cream); }
.method-blog-heading { max-width: 820px; margin-bottom: 50px; }
.method-blog-heading h2 { font-size: clamp(38px, 4.5vw, 62px); line-height: 1.12; }
.method-blog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.blog-list-heading { padding: 95px 8vw 0; }
.blog-list-heading h2 { font-size: clamp(36px, 4vw, 54px); }
.method-article-card { background: var(--paper); display: flex; flex-direction: column; }
.method-article-card img { width: 100%; height: 390px; object-fit: cover; }
.method-article-card > div { padding: 38px; display: flex; flex-direction: column; flex: 1; }
.method-article-card > div > p { color: var(--green); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.method-article-card h2 { font-size: 34px; line-height: 1.2; }
.method-article-card span { color: var(--muted); line-height: 1.75; }
.method-article-card b { margin-top: 28px; color: #80630b; font-size: 12px; }
.guide-content { max-width: 1040px; margin: 0 auto; padding: 95px 30px 130px; }
.guide-lead { max-width: 850px; margin: 0 0 70px; font-family: var(--font-display); font-size: 25px; line-height: 1.65; }
.guide-list { border-top: 1px solid var(--line); }
.guide-list > section { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.guide-list > section > span { color: var(--gold); font-size: 12px; }
.guide-list h2, .phase-list h2 { font-size: 32px; margin-bottom: 15px; }
.guide-list p, .phase-list p, .guide-next p, .advice-content p { color: var(--muted); line-height: 1.8; }
.guide-next { margin-top: 75px; padding: 45px; background: var(--green-deep); color: white; }
.guide-next h2 { font-size: 38px; }
.guide-next p { color: rgba(255,255,255,.72); }
.guide-next .button { margin-top: 14px; }
.phase-list { border-top: 1px solid var(--line); }
.phase-list > section { display: grid; grid-template-columns: minmax(260px, .9fr) 1.1fr; gap: clamp(38px, 6vw, 80px); padding: 62px 0; border-bottom: 1px solid var(--line); align-items: center; }
.phase-list > section:nth-child(even) img { order: 2; }
.phase-list > section > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: var(--cream); }
.phase-copy > span { color: var(--gold); font-size: 12px; }
.phase-name { color: var(--green) !important; font-weight: 600; }
.guide-note { margin: 45px 0 0; padding-left: 22px; border-left: 3px solid var(--gold); color: var(--muted); line-height: 1.75; }
.advice-content > section { margin-bottom: 65px; }
.advice-content > section h2 { font-size: 38px; }
.advice-content ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; list-style: none; padding: 0; border-top: 1px solid var(--line); }
.advice-content li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.advice-price { padding: 45px; background: var(--cream); display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 4px 18px; }
.advice-price strong { font-family: var(--font-display); font-size: 64px; line-height: 1; }
.advice-price span { font-size: 18px; }
.advice-price small { grid-column: 1 / -1; max-width: 600px; margin: 15px 0; color: var(--muted); line-height: 1.6; }
.advice-price .eyebrow, .advice-price .button { grid-column: 1 / -1; justify-self: start; }
.situation-list { border-top: 1px solid var(--line); }
.situation-list > section { display: grid; grid-template-columns: 75px 1fr; gap: 30px; padding: 52px 0; border-bottom: 1px solid var(--line); }
.situation-number { color: var(--gold); font-size: 12px; padding-top: 9px; }
.situation-list h2 { max-width: 780px; font-size: 34px; line-height: 1.25; }
.situation-list p { max-width: 820px; color: var(--muted); line-height: 1.8; }
.situation-list .situation-lead { color: var(--ink); font-size: 18px; }
.situation-cta { margin-top: 12px; }
.recognition-callout { margin-top: 75px; padding: 48px; background: var(--cream); }
.recognition-callout h2 { font-size: 38px; }
.recognition-callout p { max-width: 780px; color: var(--muted); line-height: 1.8; }
.recognition-callout > div { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 25px; }
.button-outline { border: 1px solid var(--green); color: var(--green); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; height: 76px; }
  .inner-main { padding-top: 76px; }
  .site-header nav { position: absolute; display: none; top: 100%; left: 0; right: 0; max-height: calc(100vh - 76px); overflow-y: auto; padding: 18px 5vw 24px; background: var(--paper); border-top: 1px solid var(--line); box-shadow: 0 16px 30px rgba(0,0,0,.12); }
  .site-header.menu-open nav { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .site-header nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .menu-toggle { width: 48px; height: 44px; padding: 7px 9px; border: 1px solid var(--line); background: transparent; color: var(--ink); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; cursor: pointer; }
  .menu-toggle span { display: block; width: 22px; height: 1px; background: currentColor; }
  .menu-toggle b { margin-top: 1px; font: 600 8px/1 var(--font-sans); text-transform: uppercase; letter-spacing: .08em; }
  .header-cta { justify-self: end; }
  .brand { height: 55px; }
  .brand-mark { width: 50px; height: 50px; flex-basis: 50px; }
  .brand-mark > img { width: 50px; height: 50px; }
  .brand span { font-size: 12px; }
  .hero-content { margin-left: 6vw; }
  .section, .process { padding: 90px 6vw; }
  .intro, .process, .about, .area { grid-template-columns: 1fr; gap: 50px; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .area-copy { border-left: 0; padding-left: 0; }
  .detail-section, .about-page { grid-template-columns: 1fr; }
  .about-portrait { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .blog-grid .archive-card:first-child { grid-column: auto; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .method-article-grid { grid-template-columns: 1fr; }
  .method-blog-grid { grid-template-columns: 1fr; }
  .service-visual-grid { grid-template-columns: 1fr; }
  .service-visual-card:first-child { grid-column: auto; display: block; }
  .project-image-wrap, .project-1 .project-image-wrap, .project-2 .project-image-wrap, .project-3 .project-image-wrap { aspect-ratio: auto; }
  .project-image-wrap img, .archive-card img, .blog-grid .archive-card:first-child img { height: auto; aspect-ratio: auto; object-fit: contain; }
  .wp-content .columns-3, .wp-content .columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  body.admin-bar .site-header { top: 46px; }
  .site-header { padding: 8px 14px; grid-template-columns: minmax(0, 1fr) auto auto; gap: 8px; }
  .brand { height: 50px; gap: 6px; }
  .brand-mark { width: 54px; height: 54px; flex-basis: 54px; }
  .brand-mark > img { width: 54px; height: 54px; }
  .brand > span:last-child { display: none; }
  .header-cta { padding: 11px 10px; max-width: 100px; text-align: center; font-size: 9px; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,15,10,.77), rgba(10,15,10,.32)); }
  .hero-content { width: auto; margin: 70px 25px 0; }
  h1 { font-size: 60px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-signature { display: none; }
  .section-heading { display: block; }
  .section-heading .gold-link { margin-top: 22px; }
  .project-grid { grid-template-columns: 1fr; gap: 48px; }
  .project-image-wrap { height: 280px; display: grid; place-items: center; background: var(--cream); }
  .project-image-wrap img { width: 100%; height: 100%; max-height: 280px; object-fit: contain; }
  .project-2 { margin-top: 0; }
  .project-3 { grid-column: auto; width: 100%; }
  .steps article { grid-template-columns: 34px 1fr; }
  .steps article > p:last-child { grid-column: 2; }
  .floating-actions { inset: auto 0 0; transform: none; flex-direction: row; justify-content: center; background: var(--paper); }
  .floating-actions a { width: 33.333%; height: 52px; }
  footer { padding-bottom: 78px; display: block; }
  .footer-brand { margin-bottom: 25px; }
  .footer-brand img { width: 85px; height: 110px; }
  .footer-links { justify-content: flex-start; }
  .page-intro { min-height: 0; padding: 65px 25px 45px; justify-content: center; }
  .page-intro .eyebrow { margin-bottom: 15px; }
  .page-intro h1 { margin-bottom: 12px; font-size: clamp(36px, 12vw, 52px); line-height: 1.08; overflow-wrap: anywhere; }
  .page-intro > p:last-child { margin: 0; font-size: 15px; line-height: 1.55; }
  .listing-section, .archive-grid, .about-page, .contact-panel { padding: 70px 25px 100px; }
  .archive-pagination { padding-left: 25px; padding-right: 25px; }
  .archive-pagination .prev, .archive-pagination .next { width: 100%; min-width: 0; }
  .listing-card { grid-template-columns: 28px 1fr 20px; gap: 12px; }
  .listing-card h2 { font-size: 25px; }
  .detail-section { padding: 70px 25px 100px; }
  .detail-section > div { font-size: 20px; }
  .entry-heading { padding: 70px 25px 55px; }
  .entry-hero { width: 100%; height: 300px; object-fit: contain; background: var(--cream); }
  .final-cta > img { opacity: .25; width: 90vw; right: -15vw; }
  .service-visual-grid { padding: 70px 25px 100px; }
  .service-visual-card img, .service-visual-card:first-child img { height: 260px; min-height: 0; object-fit: contain; background: var(--cream); }
  .service-visual-card > div { padding: 28px; }
  .service-hero { width: 100%; margin-top: 0; }
  .entry-content-full { padding: 65px 25px 100px; }
  .wp-content figure:not(.wp-block-gallery) img { width: 100%; height: 300px; object-fit: contain; background: var(--cream); }
  .wp-content .wp-block-gallery.has-nested-images > figure.wp-block-image > img,
  .wp-content .wp-block-gallery img,
  .wp-content .blocks-gallery-item img { width: 100%; height: 240px !important; min-height: 0; object-fit: contain; background: var(--cream); }
  .archive-card img, .blog-grid .archive-card:first-child img { width: 100%; height: 280px; object-fit: contain; background: var(--cream); }
  .about-portrait { padding: 70px 25px 15px; }
  .wp-content .wp-block-columns, .wp-content .wp-block-gallery, .wp-content .blocks-gallery-grid, .wp-content .columns-3, .wp-content .columns-4 { grid-template-columns: 1fr; }
  .contact-layout { padding: 70px 25px 100px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .methods-callout { padding: 30px 24px; }
  .method-article-grid { padding: 70px 25px 100px; }
  .method-blog-section { padding: 65px 25px 80px; }
  .method-blog-heading { margin-bottom: 35px; }
  .blog-list-heading { padding: 65px 25px 0; }
  .method-article-card img { height: 250px; object-fit: contain; background: var(--cream); }
  .method-article-card > div { padding: 28px; }
  .guide-content { padding: 65px 25px 100px; }
  .guide-list > section, .phase-list > section { grid-template-columns: 1fr; gap: 24px; }
  .phase-list > section:nth-child(even) img { order: 0; }
  .phase-list > section > img { height: 260px; aspect-ratio: auto; object-fit: contain; }
  .situation-list > section { grid-template-columns: 1fr; gap: 12px; }
  .guide-next, .advice-price { padding: 30px 24px; }
  .recognition-callout { padding: 32px 24px; }
  .advice-content ul { grid-template-columns: 1fr; }
}

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