:root {
  --ink: #172429;
  --muted: #667276;
  --ice: #f4f7f7;
  --white: #fff;
  --amber: #c98418;
  --amber-dark: #9d6211;
  --honey: #f2c66e;
  --blue: #dcebed;
  --line: rgba(23, 36, 41, .14);
  --shadow: 0 24px 60px rgba(30, 49, 53, .13);
  --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #f8f9f7; font-family: "Noto Sans KR", sans-serif; line-height: 1.75; word-break: keep-all; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; opacity: .16; z-index: 20; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E"); }
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 600; line-height: 1.25; letter-spacing: -.045em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.65rem); }
h3 { font-size: 1.35rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 100; padding: 10px 18px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 10px; }
.icon { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.eyebrow { margin-bottom: 1rem; color: var(--amber-dark); font-family: Manrope, sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .2em; }
.glass { background: rgba(255, 255, 255, .62); border: 1px solid rgba(255, 255, 255, .82); box-shadow: inset 0 1px rgba(255, 255, 255, .8), var(--shadow); backdrop-filter: blur(17px); }
.section { max-width: 1240px; margin: 0 auto; padding: 120px 28px; }

.site-header { position: absolute; top: 0; z-index: 15; width: 100%; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; height: 96px; margin: 0 auto; padding: 0 40px; border-bottom: 1px solid rgba(255,255,255,.35); }
.brand { display: inline-flex; gap: 12px; align-items: center; color: var(--ink); font-family: Manrope, sans-serif; font-size: .95rem; font-weight: 700; letter-spacing: -.02em; text-decoration: none; }
.brand-mark { display: grid; width: 34px; height: 34px; color: #fff; background: linear-gradient(140deg, var(--amber), #e3aa40); border: 1px solid rgba(255,255,255,.7); place-items: center; box-shadow: 0 7px 22px rgba(172,111,18,.3); }
nav { display: flex; gap: 32px; align-items: center; }
nav a { position: relative; font-size: .87rem; font-weight: 500; text-decoration: none; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--amber); transform: scaleX(0); transition: transform .2s; }
nav a:hover::after, nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 11px 20px; color: #fff; background: var(--ink); }
.nav-toggle { display: none; border: 0; background: none; }

.hero { position: relative; display: grid; min-height: 850px; overflow: hidden; background: radial-gradient(circle at 68% 20%, rgba(206,231,235,.9), transparent 35%), linear-gradient(110deg, #fbfbf7 0 54%, #e8f0ef 54%); grid-template-columns: 1.05fr .95fr; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -80px; width: 520px; height: 520px; border: 1px solid rgba(201,132,24,.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(201,132,24,.025), 0 0 0 160px rgba(201,132,24,.02); }
.hero-copy { position: relative; z-index: 2; align-self: center; max-width: 760px; padding: 170px 8vw 90px; }
.hero-copy h1 { margin-bottom: 28px; font-size: clamp(3.1rem, 6.1vw, 6.3rem); }
.hero-copy h1 span { color: var(--amber-dark); }
.hero-lead { max-width: 590px; margin-bottom: 36px; color: #536165; font-size: 1.12rem; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; gap: 13px; align-items: center; justify-content: center; min-height: 52px; padding: 12px 24px; border: 1px solid var(--line); border-radius: 1px; font-size: .88rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42,57,60,.13); }
.button.primary { color: #fff; background: linear-gradient(120deg, #b87213, #d99a32); border-color: #b87213; }
.button.ghost { background: rgba(255,255,255,.45); }
.button.light { color: var(--ink); background: #fff; }
.hero-note { display: flex; gap: 14px; align-items: center; margin-top: 45px; color: var(--muted); font-size: .77rem; }
.hero-note p { margin: 0; }
.hero-note .line { width: 42px; height: 1px; background: var(--amber); }
.hero-visual { position: relative; display: flex; align-items: center; min-width: 0; padding: 140px 6vw 70px 0; }
.image-frame { position: relative; z-index: 2; width: min(100%, 560px); height: 620px; padding: 14px; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.75); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.image-frame::before, .image-frame::after { content: ""; position: absolute; width: 100px; height: 100px; border-color: rgba(255,255,255,.65); }
.image-frame::before { top: -22px; left: -22px; border-top: 1px solid; border-left: 1px solid; }
.image-frame::after { right: -22px; bottom: -22px; border-right: 1px solid; border-bottom: 1px solid; }
.image-frame img { width: 100%; height: 100%; filter: saturate(.7) contrast(.96); }
.floating-card { position: absolute; z-index: 4; bottom: 105px; left: -70px; display: flex; gap: 14px; align-items: center; width: 255px; padding: 19px; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: .85rem; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.signal { width: 13px; height: 13px; background: var(--amber); border: 4px solid #f8dfae; border-radius: 50%; box-shadow: 0 0 0 5px rgba(201,132,24,.17); }
.amber-disc { position: absolute; right: 0; bottom: 30px; width: 230px; height: 230px; background: radial-gradient(circle at 35% 30%, #f7d68a, #b86f0f 72%); border-radius: 50%; box-shadow: inset 0 0 35px rgba(255,255,255,.5), 0 30px 70px rgba(173,110,15,.25); opacity: .82; }

.trust-strip { display: grid; align-items: center; max-width: 1400px; margin: 0 auto; padding: 45px 40px; border-bottom: 1px solid var(--line); grid-template-columns: .8fr 1.2fr; }
.trust-strip p { margin: 0; font-size: .9rem; line-height: 1.6; }
.principles { display: flex; justify-content: space-between; }
.principles span { color: #657174; font-size: .77rem; letter-spacing: .06em; }
.principles span::before { content: "✦"; margin-right: 8px; color: var(--amber); }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 55px; }
.section-heading h2 { margin: 0; }
.section-heading > p { max-width: 440px; margin: 0 0 5px; color: var(--muted); }
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; min-height: 390px; padding: 38px; overflow: hidden; background: linear-gradient(150deg, rgba(255,255,255,.8), rgba(222,235,235,.4)); }
.service-card::after { content: ""; position: absolute; right: -80px; bottom: -95px; width: 180px; height: 180px; background: rgba(212,153,57,.12); border: 1px solid rgba(201,132,24,.15); border-radius: 50%; }
.service-icon { display: grid; width: 52px; height: 52px; margin-bottom: 42px; color: var(--amber-dark); border: 1px solid rgba(201,132,24,.35); place-items: center; }
.service-card h3 { font-size: 1.55rem; }
.service-card > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.text-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 20px; color: var(--amber-dark); font-size: .82rem; font-weight: 600; text-decoration: none; }
.text-link .icon { transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link.large { font-size: .93rem; }

.split-section { display: grid; min-height: 720px; background: #e8efee; grid-template-columns: 1fr 1fr; }
.split-image { position: relative; min-height: 620px; }
.split-image img { width: 100%; height: 100%; }
.image-caption { position: absolute; right: 20px; bottom: 20px; padding: 10px 15px; color: #fff; background: rgba(20,34,38,.62); font: .65rem Manrope, sans-serif; letter-spacing: .14em; backdrop-filter: blur(7px); }
.split-copy { display: flex; align-items: flex-start; justify-content: center; flex-direction: column; padding: 90px 10vw 90px 8vw; }
.split-copy h2 { margin-bottom: 30px; }
.split-copy > p:not(.eyebrow) { max-width: 570px; color: var(--muted); }
.check-list { padding: 15px 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: center; margin: 13px 0; font-size: .9rem; }
.check-list .icon { color: var(--amber); }
.testimonial { text-align: center; }
.quote-mark { display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; margin: 0 auto 35px; color: var(--amber); border: 1px solid rgba(201,132,24,.28); border-radius: 50%; }
.testimonial blockquote { max-width: 960px; margin: 0 auto 25px; font-size: clamp(1.6rem, 3vw, 2.65rem); font-weight: 300; line-height: 1.6; letter-spacing: -.035em; }
.testimonial p { color: var(--muted); font-size: .8rem; }
.cta-band { display: flex; align-items: center; justify-content: space-between; min-height: 340px; padding: 70px max(7vw, 28px); color: #fff; background: linear-gradient(115deg, #15262a, #263b3e 68%, #8d5a19); }
.cta-band h2 { margin: 0; }
.cta-band .eyebrow { color: var(--honey); }

.page-hero { position: relative; display: flex; align-items: end; min-height: 520px; padding: 180px 28px 90px; overflow: hidden; background: linear-gradient(125deg, #eef3f1, #f9f7f0 60%, #e7d4ad); }
.page-hero::before { content: ""; position: absolute; top: -45%; right: 10%; width: 620px; height: 620px; border: 1px solid rgba(255,255,255,.9); border-radius: 50%; box-shadow: 0 0 0 75px rgba(255,255,255,.23), 0 0 0 150px rgba(255,255,255,.12); }
.page-hero .narrow { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: auto; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 5vw, 5.3rem); }
.lead { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.06rem; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { top: 100px; right: 12%; width: 115px; height: 115px; background: rgba(200,130,20,.68); box-shadow: inset 15px 15px 40px rgba(255,255,255,.45); }
.orb-two { right: 5%; bottom: 40px; width: 55px; height: 55px; background: rgba(255,255,255,.65); border: 1px solid #fff; }

.service-list { padding-top: 70px; }
.service-list > article { display: grid; gap: 50px; padding: 60px 0; border-bottom: 1px solid var(--line); grid-template-columns: 80px 1fr 280px; }
.number { color: var(--amber); font: 500 1.2rem Manrope, sans-serif; }
.service-list h2 { font-size: 2.25rem; }
.service-list article > div:nth-child(2) p { max-width: 650px; color: var(--muted); }
.service-list ul { display: grid; gap: 8px; padding-left: 20px; font-size: .9rem; }
.service-list li::marker { color: var(--amber); }
.service-list aside { display: flex; align-self: start; padding: 25px; background: #edf2f0; flex-direction: column; }
.service-list aside strong { margin: 10px 0 3px; color: var(--amber-dark); font-size: .69rem; letter-spacing: .1em; }
.service-list aside span { font-size: .84rem; }
.info-panel { display: grid; gap: 80px; max-width: 1180px; margin: 30px auto 120px; padding: 60px; background: linear-gradient(120deg, #e2eceb, #f3eee1); grid-template-columns: 1fr 1fr; }
.info-panel h2 { margin: 0; font-size: 2rem; }
.info-panel > p { margin: 0; color: var(--muted); }

.timeline { padding-top: 70px; }
.timeline article { display: grid; gap: 40px; padding: 55px 0; border-bottom: 1px solid var(--line); grid-template-columns: 70px 1fr 300px; }
.timeline article > span { display: grid; width: 48px; height: 48px; color: #fff; background: var(--amber); font: 600 .8rem Manrope, sans-serif; place-items: center; }
.timeline h2 { font-size: 2rem; }
.timeline article > div:nth-child(2) p:last-child { max-width: 640px; color: var(--muted); }
.output { align-self: center; padding-left: 28px; border-left: 1px solid rgba(201,132,24,.4); }
.output strong { font-size: .75rem; }
.output p { margin: 5px 0; color: var(--muted); font-size: .83rem; }
.process-photo { position: relative; height: 650px; }
.process-photo > img { width: 100%; height: 100%; filter: saturate(.55); }
.process-photo .glass { position: absolute; right: 8%; bottom: 0; max-width: 600px; padding: 50px; }
.process-photo .glass h2 { font-size: 2rem; }
.process-photo .glass p:last-child { color: var(--muted); }

.articles-grid { display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); }
.article-card { background: #fff; border: 1px solid var(--line); }
.article-card img { width: 100%; height: 310px; filter: saturate(.67); }
.article-card > div { padding: 32px; }
.article-card.featured { display: grid; grid-column: 1 / -1; grid-template-columns: 1.2fr 1fr; }
.article-card.featured img { height: 100%; min-height: 420px; }
.article-card.featured > div { align-self: center; padding: 55px; }
.article-meta { display: flex; justify-content: space-between; margin-bottom: 20px; color: var(--muted); font-size: .74rem; }
.article-meta span { color: var(--amber-dark); font-weight: 600; }
.article-card h2 { font-size: 1.75rem; }
.article-card p { color: var(--muted); font-size: .9rem; }
.newsletter { max-width: 820px; margin: 0 auto 120px; padding: 65px; text-align: center; background: linear-gradient(135deg, #edf3f2, #f5ead2); border: 1px solid rgba(255,255,255,.8); }
.newsletter h2 { font-size: 2rem; }
.newsletter > p:not(.eyebrow) { color: var(--muted); }

.about-split { background: #f8f9f7; }
.about-split .split-image { margin: 100px 0 100px 8vw; }
.about-split .split-copy { padding-right: 9vw; }
.values { padding-top: 80px; }
.values article { padding: 35px; border-top: 1px solid var(--line); }
.values article > span { color: var(--amber); font: 500 .8rem Manrope, sans-serif; }
.values h3 { margin-top: 45px; }
.values article p { color: var(--muted); font-size: .9rem; }
.location-panel { display: grid; gap: 60px; max-width: 1180px; margin: 0 auto 120px; padding: 60px; background: #e7eeee; grid-template-columns: 1.4fr .6fr; }
.location-panel .icon { margin-bottom: 20px; color: var(--amber); }
.location-panel h2 { font-size: 2rem; }
.location-panel p:last-child, .location-panel address { color: var(--muted); }
.location-panel address { align-self: end; font-size: .85rem; font-style: normal; }

.contact-layout { display: grid; gap: 70px; max-width: 1180px; grid-template-columns: 1.4fr .6fr; }
form { padding: 0 20px 0 0; }
.form-intro { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.form-intro h2 { font-size: 2rem; }
.form-intro p { color: var(--muted); font-size: .72rem; }
label span, legend span, .form-intro span, .consent b { color: var(--amber-dark); }
.field-row { display: grid; gap: 25px; grid-template-columns: 1fr 1fr; }
.field { margin-bottom: 27px; }
.field label, fieldset legend { display: block; margin-bottom: 8px; font-size: .8rem; font-weight: 600; }
input:not([type="radio"]):not([type="checkbox"]), textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: rgba(255,255,255,.6); border: 1px solid #cad2d2; outline: 0; transition: border .2s, box-shadow .2s; }
input:focus, textarea:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(201,132,24,.1); }
textarea { resize: vertical; }
fieldset { margin: 0 0 28px; padding: 0; border: 0; }
.choice-row { display: grid; gap: 8px; grid-template-columns: repeat(4, 1fr); }
.choice-row label { cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; }
.choice-row span { display: block; padding: 12px 8px; color: var(--ink); text-align: center; background: #fff; border: 1px solid #cad2d2; font-size: .77rem; }
.choice-row input:checked + span, .choice-row input:focus + span { color: var(--amber-dark); background: #fcf5e6; border-color: var(--amber); }
.consent { display: flex; gap: 10px; align-items: start; margin-bottom: 20px; color: var(--muted); font-size: .76rem; }
.consent span { color: inherit; }
.error { display: block; min-height: 18px; margin-top: 3px; color: #a13a2d; font-size: .7rem; }
.invalid { border-color: #a13a2d !important; }
.form-status { margin-top: 18px; padding: 0; font-size: .82rem; }
.form-status.success, .form-status.failure { padding: 12px 15px; }
.form-status.success { color: #285b46; background: #e2f0e8; }
.form-status.failure { color: #8b3028; background: #f6e5e2; }
.contact-aside { padding-top: 20px; }
.contact-aside .glass { padding: 36px; background: linear-gradient(145deg, rgba(225,236,235,.78), rgba(255,247,228,.7)); }
.contact-aside h2 { font-size: 1.5rem; }
.contact-aside ul { padding-left: 20px; color: var(--muted); font-size: .82rem; }
.contact-aside li { margin: 9px 0; }
.contact-detail { display: flex; gap: 15px; align-items: center; padding: 25px 10px; border-bottom: 1px solid var(--line); }
.contact-detail .icon { color: var(--amber); }
.contact-detail strong, .contact-detail a, .contact-detail span { display: block; }
.contact-detail strong { font-size: .78rem; }
.contact-detail a, .contact-detail span { color: var(--muted); font-size: .75rem; }

.legal-content { max-width: 900px; margin: 0 auto; padding: 90px 28px 120px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: 1.25rem; letter-spacing: -.02em; }
.legal-content p { margin: 0; color: #566266; font-size: .9rem; }
.legal-contact { display: flex; justify-content: space-between; margin-top: 45px; padding: 25px; background: #eaf0ef; font-size: .83rem; }
.legal-contact a { color: var(--amber-dark); }
.not-found { position: relative; display: flex; align-items: flex-start; justify-content: center; min-height: 100vh; padding: 200px 28px 100px; overflow: hidden; text-align: center; background: radial-gradient(circle at 70% 35%, #dceced, transparent 35%), #f6f7f4; flex-direction: column; }
.not-found > * { position: relative; z-index: 2; max-width: 900px; margin-right: auto; margin-left: auto; }
.not-found h1 { font-size: clamp(3rem, 6vw, 6rem); }
.not-found > p:not(.eyebrow) { color: var(--muted); }
.not-found .amber-disc { right: 12%; bottom: 10%; width: 320px; height: 320px; opacity: .35; }

.site-footer { padding: 75px 5vw 25px; color: #d5dede; background: #132326; }
.footer-grid { display: grid; gap: 55px; max-width: 1240px; margin: 0 auto 70px; grid-template-columns: 2fr repeat(3, 1fr); }
.footer-grid > div:first-child p { max-width: 330px; color: #8fa0a3; font-size: .82rem; }
.footer-brand { margin-bottom: 20px; color: #fff; }
.footer-grid h2 { margin-bottom: 20px; color: var(--honey); font: 600 .68rem Manrope, sans-serif; letter-spacing: .13em; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) p { display: block; margin: 9px 0; color: #94a4a6; font-size: .76rem; text-decoration: none; }
.footer-grid a:hover { color: #fff !important; }
.footer-bottom { display: flex; justify-content: space-between; max-width: 1240px; margin: auto; padding-top: 22px; color: #667a7e; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }

.cookie-banner { position: fixed; right: 24px; bottom: 24px; z-index: 50; width: min(520px, calc(100% - 48px)); padding: 24px; background: rgba(248,250,248,.94); border: 1px solid rgba(255,255,255,.9); box-shadow: 0 24px 65px rgba(19,35,38,.25); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-size: .9rem; }
.cookie-banner p { margin: 5px 0 15px; color: var(--muted); font-size: .76rem; }
.cookie-banner p a { color: var(--amber-dark); }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cookie-actions .button { min-height: 40px; padding: 7px 17px; }
.island-error { color: #9d3429 !important; }

@media (max-width: 900px) {
  .nav-wrap { height: 76px; padding: 0 22px; }
  .nav-toggle { position: relative; z-index: 5; display: grid; gap: 5px; width: 40px; padding: 8px; }
  .nav-toggle > span:not(.sr-only) { display: block; height: 1px; background: var(--ink); }
  nav { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; padding: 100px 30px; background: rgba(245,248,246,.97); flex-direction: column; backdrop-filter: blur(16px); }
  nav.open { display: flex; }
  nav a { font-size: 1.2rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 140px 28px 65px; }
  .hero-visual { min-height: 650px; padding: 20px 28px 70px; }
  .image-frame { height: 570px; margin: auto; }
  .floating-card { bottom: 45px; left: 15px; }
  .trust-strip, .info-panel, .location-panel { gap: 30px; grid-template-columns: 1fr; }
  .principles { gap: 15px; flex-wrap: wrap; }
  .section-heading { align-items: flex-start; gap: 25px; flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 550px; }
  .split-copy { padding: 75px 28px; }
  .service-list > article, .timeline article { gap: 25px; grid-template-columns: 55px 1fr; }
  .service-list aside, .timeline .output { grid-column: 2; }
  .articles-grid, .contact-layout { grid-template-columns: 1fr; }
  .article-card.featured { grid-template-columns: 1fr; }
  .article-card.featured img { min-height: 320px; }
  .about-split .split-image { margin: 70px 28px 0; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  body { word-break: normal; }
  .section { padding: 80px 20px; }
  .brand { font-size: .82rem; }
  .hero-copy h1 { font-size: 3rem; }
  .hero-visual { min-height: 520px; padding-right: 20px; padding-left: 20px; }
  .image-frame { height: 460px; }
  .hero-note { align-items: flex-start; }
  .trust-strip { padding: 35px 20px; }
  .principles { display: grid; grid-template-columns: 1fr 1fr; }
  .split-image { min-height: 430px; }
  .cta-band { align-items: flex-start; gap: 35px; flex-direction: column; }
  .page-hero { min-height: 470px; padding: 150px 20px 65px; }
  .service-list > article, .timeline article { display: block; }
  .number, .timeline article > span { margin-bottom: 20px; }
  .service-list aside { margin-top: 25px; }
  .timeline .output { margin-top: 25px; }
  .info-panel, .newsletter, .location-panel { margin-right: 20px; margin-left: 20px; padding: 35px 25px; }
  .process-photo { height: 650px; }
  .process-photo .glass { right: 20px; bottom: 20px; left: 20px; padding: 28px; }
  .article-card.featured { display: block; }
  .article-card.featured > div { padding: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .choice-row { grid-template-columns: 1fr 1fr; }
  form { padding: 0; }
  .form-intro { align-items: flex-start; flex-direction: column; }
  .legal-contact, .footer-bottom { gap: 12px; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); }
}

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