:root {
  --ink: #171512;
  --ink-2: #28231f;
  --ivory: #f3efe7;
  --paper: #fbfaf7;
  --white: #ffffff;
  --copper: #b86f45;
  --copper-dark: #915135;
  --sand: #dccab7;
  --muted: #6c655e;
  --line: rgba(23, 21, 18, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 40px;
  --pill: 999px;
  --shadow: 0 20px 60px rgba(22, 17, 13, 0.12);
  --shell: min(1170px, calc(100% - 48px));
  --serif: Iowan Old Style, Baskerville, "Times New Roman", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--copper); color: var(--white); }

.skip-link { position: fixed; top: 8px; left: 8px; transform: translateY(-140%); z-index: 200; background: var(--white); padding: 12px 16px; border-radius: var(--pill); box-shadow: var(--shadow); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header { position: fixed; z-index: 100; top: 18px; left: 0; right: 0; pointer-events: none; }
.nav { pointer-events: auto; min-height: 72px; padding: 10px 12px 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(255,255,255,.42); border-radius: var(--pill); background: rgba(247,243,235,.84); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 12px 40px rgba(17, 14, 11, .08); transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.site-header.scrolled .nav { background: rgba(251,250,247,.94); box-shadow: 0 12px 40px rgba(17,14,11,.13); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: var(--ivory); font-family: var(--serif); font-weight: 700; letter-spacing: -.04em; position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(184,111,69,.8); border-radius: 50%; }
.brand-copy { line-height: 1; display: grid; gap: 4px; }
.brand-copy strong { font-size: 14px; letter-spacing: -.02em; }
.brand-copy small { font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links > a { font-size: 13px; font-weight: 650; padding: 13px 12px; border-radius: var(--pill); transition: background .2s ease, transform .2s ease; }
.nav-links > a:not(.nav-cta):hover, .nav-links > a:not(.nav-cta):focus-visible { background: rgba(23,21,18,.06); }
.language-switcher { display: inline-flex; align-items: center; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: var(--pill); background: rgba(255,255,255,.46); color: var(--muted); }
.language-switcher > span { font-size: 10px; opacity: .45; }
.language-button { border: 0; background: transparent; min-width: 32px; height: 32px; padding: 0 8px; border-radius: var(--pill); font-size: 10px; font-weight: 850; letter-spacing: .08em; cursor: pointer; color: var(--muted); transition: background .2s ease, color .2s ease, transform .2s ease; }
.language-button:hover, .language-button:focus-visible { color: var(--ink); background: rgba(23,21,18,.06); }
.language-button.active { background: var(--ink); color: var(--white); }
.nav-cta { background: var(--ink); color: var(--white); padding-inline: 18px !important; }
.nav-cta span, .button span { display: inline-block; transition: transform .22s ease; }
.nav-cta:hover span, .nav-cta:focus-visible span, .button:hover span, .button:focus-visible span { transform: translate(3px,-3px); }
.menu-toggle { display: none; border: 0; background: var(--ink); width: 44px; height: 44px; border-radius: 50%; place-items: center; padding: 0; }
.menu-toggle span { width: 18px; height: 1.5px; background: white; position: absolute; transition: transform .2s ease; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero { padding-top: 108px; }
.hero-card { min-height: min(760px, calc(100svh - 132px)); border-radius: var(--radius-xl); overflow: hidden; position: relative; background: var(--ink); box-shadow: var(--shadow); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,13,11,.86) 0%, rgba(16,13,11,.56) 46%, rgba(16,13,11,.08) 76%), linear-gradient(0deg, rgba(16,13,11,.38), transparent 42%); }
.hero-content { position: relative; z-index: 2; min-height: inherit; padding: clamp(130px, 16vw, 210px) 7% 80px; max-width: 760px; color: white; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: 11px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase; color: var(--copper-dark); margin-bottom: 22px; }
.eyebrow.light { color: #f0c8ad; }
.hero h1, .section-heading h2, .gallery-heading h2, .comparison-copy h2, .about-copy h2, .contact-copy h2 { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.052em; line-height: .93; }
.hero h1 { font-size: clamp(66px, 8.2vw, 118px); max-width: 800px; }
h1 em, h2 em { font-weight: 400; color: var(--copper); }
.hero p { margin: 28px 0 0; max-width: 600px; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.55; color: rgba(255,255,255,.83); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 22px; border: 0; border-radius: var(--pill); display: inline-flex; align-items: center; justify-content: center; gap: 18px; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-accent { background: var(--copper); color: white; box-shadow: 0 12px 30px rgba(117,61,36,.28); }
.button-accent:hover, .button-accent:focus-visible { background: #c37a50; }
.text-link { font-size: 14px; font-weight: 750; display: inline-flex; gap: 12px; align-items: center; }
.light-link { color: rgba(255,255,255,.86); }
.hero-note { position: absolute; z-index: 3; right: 26px; bottom: 26px; max-width: 350px; display: flex; align-items: flex-start; gap: 13px; color: white; }
.glass-card { padding: 16px 18px; border-radius: 20px; background: rgba(17,14,11,.38); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.note-dot { width: 9px; height: 9px; margin-top: 5px; flex: 0 0 auto; background: var(--copper); border-radius: 50%; box-shadow: 0 0 0 5px rgba(184,111,69,.14); }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { font-size: 13px; margin-bottom: 4px; }
.hero-note span { font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.68); }

.property-strip { margin-top: 20px; padding: 18px 28px; display: flex; justify-content: space-between; gap: 20px; border: 1px solid var(--line); border-radius: var(--pill); color: var(--muted); font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .12em; overflow: hidden; }
.property-strip span { white-space: nowrap; }

.section { padding-top: clamp(92px, 10vw, 140px); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: end; margin-bottom: 54px; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -24px; }
.section-heading h2, .gallery-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(48px, 5.5vw, 78px); }
.section-heading > p, .gallery-heading > p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 480px; margin: 0; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.service-card { position: relative; min-height: 330px; padding: 28px; display: flex; flex-direction: column; border-radius: var(--radius-lg); background: var(--ivory); border: 1px solid transparent; transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(40,30,24,.08); }
.service-feature { grid-row: span 2; min-height: 676px; background: var(--ink); color: white; overflow: hidden; }
.service-feature::after { content:""; position:absolute; width: 360px; height: 360px; border-radius:50%; right:-160px; bottom:-120px; border: 1px solid rgba(184,111,69,.42); box-shadow: 0 0 0 54px rgba(184,111,69,.05), 0 0 0 110px rgba(184,111,69,.04); }
.service-number { font-family: var(--serif); color: var(--copper); font-size: 18px; margin-bottom: auto; }
.service-card h3 { font-family: var(--serif); font-size: clamp(29px, 3vw, 42px); font-weight: 500; letter-spacing: -.035em; margin: 0 0 16px; max-width: 330px; }
.service-card p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 0; max-width: 380px; }
.service-feature p { color: rgba(255,255,255,.66); font-size: 16px; }
.service-feature a { margin-top: 28px; font-size: 13px; font-weight: 800; color: #f3cdb4; position: relative; z-index: 2; }
.card-arrow { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: white; transition: transform .25s ease, background .25s ease; }
.service-card:hover .card-arrow { transform: rotate(45deg); background: var(--copper); color: white; }

.comparison-section { margin-top: clamp(96px, 10vw, 150px); padding-block: clamp(88px, 9vw, 128px); background: var(--ink); color: white; }
.comparison-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: center; }
.comparison-copy h2 { font-size: clamp(50px, 5.8vw, 80px); }
.comparison-copy p { color: rgba(255,255,255,.64); line-height: 1.75; font-size: 16px; max-width: 480px; margin: 28px 0 34px; }
.project-meta { display: grid; gap: 14px; }
.project-meta div { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 24px; }
.project-meta span { color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.project-meta strong { font-size: 12px; font-weight: 650; text-align: right; }
.before-after { position: relative; height: clamp(480px, 56vw, 720px); max-height: 720px; overflow: hidden; border-radius: var(--radius-xl); background: #2e2925; box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.ba-image { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-after { background-image: url('https://images.unsplash.com/photo-1771372125074-5c7c4332095f?auto=format&fit=crop&fm=jpg&q=80&w=1800'); }
.ba-before { background-image: url('https://images.unsplash.com/photo-1768321902290-54497eeb9cf6?auto=format&fit=crop&fm=jpg&q=80&w=1800'); clip-path: inset(0 calc(100% - var(--position)) 0 0); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--position); width: 2px; background: rgba(255,255,255,.92); transform: translateX(-1px); pointer-events: none; }
.ba-line span { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--copper); color: white; box-shadow: 0 8px 30px rgba(0,0,0,.25); font-size: 19px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; }
.before-after:focus-within { outline: 2px solid #f0c8ad; outline-offset: 5px; }
.ba-label { position: absolute; top: 18px; padding: 9px 12px; background: rgba(17,14,11,.65); color: white; border-radius: var(--pill); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; backdrop-filter: blur(8px); }
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; }

.gallery-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.gallery-heading .eyebrow { margin-bottom: 20px; }
.project-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 16px; }
.project-card { outline: none; }
.project-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1.35 / 1; background: var(--ivory); }
.project-image-wrap.portrait { aspect-ratio: .79 / 1; }
.project-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.project-card:hover img, .project-card:focus-visible img { transform: scale(1.035); }
.project-pill { position: absolute; top: 16px; left: 16px; padding: 9px 12px; border-radius: var(--pill); background: rgba(251,250,247,.84); backdrop-filter: blur(8px); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.project-caption { padding: 18px 3px 0; }
.project-caption h3 { font-family: var(--serif); font-size: 26px; font-weight: 500; margin: 0 0 4px; letter-spacing: -.025em; }
.project-caption span { color: var(--muted); font-size: 12px; }

.process-section { padding-bottom: clamp(95px, 10vw, 140px); background: var(--ivory); margin-top: clamp(96px, 10vw, 150px); }
.section-heading.compact { grid-template-columns: 1fr; max-width: 850px; }
.section-heading.compact .eyebrow { grid-column: auto; margin-bottom: -8px; }
.process-grid { list-style: none; padding: 0; margin: 60px 0 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.process-card { min-height: 300px; padding: 24px; background: var(--paper); border-radius: var(--radius-md); display: flex; flex-direction: column; border: 1px solid rgba(23,21,18,.04); }
.process-card > span { font-family: var(--serif); color: var(--copper); font-size: 17px; margin-bottom: auto; }
.process-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -.03em; }
.process-card p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 13px; }

.about { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 7vw, 90px); align-items: center; }
.about-media { position: relative; }
.about-media > img { width: 100%; min-height: 620px; object-fit: cover; border-radius: var(--radius-xl); }
.about-badge { position: absolute; right: -22px; bottom: 32px; width: 160px; height: 160px; border-radius: 50%; display: grid; place-content: center; gap: 5px; text-align: center; background: var(--copper); color: white; box-shadow: 0 16px 45px rgba(115,62,38,.28); transform: rotate(5deg); }
.about-badge span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.about-badge strong { font-family: var(--serif); font-weight: 500; font-size: 18px; }
.about-copy .lead { font-size: 20px; line-height: 1.55; color: var(--ink); margin-top: 28px; }
.about-copy > p:not(.lead) { color: var(--muted); line-height: 1.7; font-size: 15px; }
.about-points { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.about-points > div { display: grid; grid-template-columns: 36px 1fr; column-gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.about-points span { grid-row: 1 / 3; font-family: var(--serif); color: var(--copper); }
.about-points strong { font-size: 13px; }
.about-points p { margin: 4px 0 0; color: var(--muted); font-size: 12px; }

.contact-section { margin-top: clamp(100px, 11vw, 160px); padding: 0 0 32px; }
.contact-card { background: var(--ink); color: white; border-radius: var(--radius-xl); padding: clamp(42px, 6vw, 78px); display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); overflow: hidden; position: relative; }
.contact-card::before { content:""; position:absolute; width:460px; height:460px; border:1px solid rgba(184,111,69,.18); border-radius:50%; left:-280px; top:-250px; box-shadow: 0 0 0 70px rgba(184,111,69,.025), 0 0 0 140px rgba(184,111,69,.02); }
.contact-copy { position: relative; z-index: 1; }
.contact-copy p { color: rgba(255,255,255,.64); line-height: 1.7; max-width: 500px; }
.service-area { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); }
.service-area span { display: block; color: #f0c8ad; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; font-weight: 800; margin-bottom: 9px; }
.service-area strong { font-size: 13px; line-height: 1.55; font-weight: 550; color: rgba(255,255,255,.82); }
.contact-form { position: relative; z-index: 1; padding: 30px; border-radius: var(--radius-lg); background: var(--paper); color: var(--ink); display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: white; border-radius: 13px; padding: 13px 14px; color: var(--ink); outline: none; text-transform: none; letter-spacing: 0; font-weight: 500; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(184,111,69,.13); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { text-align: center; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.4; }
.form-note.success { color: #466d4d; font-weight: 700; }

.footer { padding: 56px 0 28px; display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: center; gap: 28px; }
.footer > p { color: var(--muted); font-size: 12px; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; font-size: 12px; font-weight: 700; }
.footer-bottom { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .58s ease, transform .58s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 860px); }
  .nav { border-radius: 28px; }
  .menu-toggle { display: grid; position: relative; }
  .nav-links { position: absolute; top: 82px; left: 0; right: 0; padding: 12px; background: rgba(251,250,247,.98); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); display: grid; transform-origin: top; opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links > a { padding: 14px 16px; }
  .language-switcher { justify-self: start; margin: 4px 8px; }
  .nav-cta { text-align: center; margin-top: 3px; }
  .hero-card { min-height: 720px; }
  .hero-content { padding: 165px 7% 120px; }
  .hero-note { max-width: 330px; }
  .section-heading, .gallery-heading { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-heading .eyebrow { margin-bottom: -4px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-feature { grid-row: auto; grid-column: 1 / -1; min-height: 420px; }
  .comparison-layout { grid-template-columns: 1fr; }
  .comparison-copy { max-width: 720px; }
  .before-after { height: 660px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-wide { grid-column: 1 / -1; }
  .project-wide .project-image-wrap { aspect-ratio: 1.75 / 1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-media > img { min-height: 560px; }
  .about-badge { right: 24px; }
  .contact-card { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer > p { text-align: left; }
  .footer-links { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius-xl: 28px; --radius-lg: 24px; }
  .site-header { top: 10px; }
  .nav { min-height: 62px; padding: 8px 9px 8px 11px; }
  .brand-mark { width: 39px; height: 39px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle { width: 40px; height: 40px; }
  .nav-links { top: 70px; }
  .language-switcher { width: max-content; }
  .hero { padding-top: 82px; }
  .hero-card { min-height: 690px; }
  .hero-image { object-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(16,13,11,.86) 0%, rgba(16,13,11,.58) 56%, rgba(16,13,11,.15) 100%); }
  .hero-content { justify-content: flex-end; padding: 170px 22px 148px; }
  .hero h1 { font-size: clamp(55px, 17vw, 76px); }
  .hero p { font-size: 16px; line-height: 1.55; }
  .hero-actions { gap: 18px; }
  .button { width: 100%; }
  .text-link { width: 100%; justify-content: center; }
  .hero-note { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .property-strip { border-radius: 20px; overflow-x: auto; justify-content: flex-start; padding: 16px 18px; scrollbar-width: none; }
  .property-strip::-webkit-scrollbar { display:none; }
  .section { padding-top: 88px; }
  .section-heading, .gallery-heading { margin-bottom: 34px; }
  .section-heading h2, .gallery-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(46px, 14vw, 64px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-feature { grid-column: auto; min-height: 430px; }
  .service-card { min-height: 280px; }
  .comparison-section { margin-top: 96px; padding-block: 80px; }
  .comparison-layout { gap: 44px; }
  .before-after { height: 500px; }
  .project-meta div { align-items: flex-end; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-wide .project-image-wrap, .project-image-wrap, .project-image-wrap.portrait { aspect-ratio: 1 / 1.08; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 250px; }
  .about { gap: 44px; }
  .about-media > img { min-height: 470px; }
  .about-badge { width: 130px; height: 130px; bottom: 18px; right: 18px; }
  .contact-section { margin-top: 96px; }
  .contact-card { padding: 38px 20px 20px; gap: 36px; }
  .contact-form { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { grid-column: auto; grid-row: auto; justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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