@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/fraunces-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400-500-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-400-500-latin.woff2") format("woff2");
}

:root {
  --paper: #f7f3ea;
  --paper-deep: #eee6d8;
  --sand: #ded0b8;
  --ochre: #bd9158;
  --sage: #a7af96;
  --sky: #abc7d2;
  --petrol: #446f70;
  --old-rose: #c6a4a2;
  --soft-gold: #b89a68;
  --ink: #2d403e;
  --warm-ink: #686258;
  --line: rgba(45, 64, 62, .2);
  --section-space: clamp(112px, 11vw, 176px);
  --section-space-mobile: clamp(84px, 18vw, 112px);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.75; position: relative; }
body::before { content: ""; position: fixed; z-index: 90; inset: 0; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' seed='11' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
.page-width { width: min(calc(100% - 80px), 1480px); margin-inline: auto; }
main > section { isolation: isolate; }
.anchor-target { position: absolute; top: 0; }
.skip-link { position: fixed; z-index: 100; left: 18px; top: 14px; padding: 10px 14px; background: var(--ink); color: var(--paper); font-size: 11px; transform: translateY(-180%); transition: transform .2s; }
.skip-link:focus { transform: none; }
.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: 88px; padding-inline: max(40px, calc((100vw - 1480px) / 2)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: background .35s, border-color .35s; }
.site-header.scrolled { background: rgba(247, 243, 234, .93); border-color: var(--line); backdrop-filter: blur(14px); }
.wordmark { width: 126px; display: flex; flex-direction: column; font-family: var(--serif); line-height: .9; }
.wordmark span { font-size: 22px; }
.wordmark small { align-self: flex-end; margin-top: 7px; font: 500 8px/1 var(--sans); text-transform: uppercase; letter-spacing: .34em; }
.desktop-nav { display: flex; gap: 32px; font-size: 11px; letter-spacing: .035em; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: linear-gradient(90deg, rgba(68,111,112,.8), rgba(198,164,162,.62)); transition: right .35s cubic-bezier(.2,.7,.2,1); }
.desktop-nav a:hover::after { right: 0; }
.menu-toggle, .mobile-menu { display: none; }
.overline, .section-label { margin: 0; color: var(--warm-ink); font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 400; margin: 0; }
h1 { font-size: clamp(60px, 6.4vw, 108px); line-height: .91; letter-spacing: -.04em; }
h1 em, h2 em { color: var(--petrol); font-style: italic; font-weight: 400; }
h2 { font-size: clamp(48px, 5vw, 82px); line-height: 1.02; letter-spacing: -.032em; }
.hero { min-height: 100vh; padding: 118px 0 45px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 5vw; align-items: center; position: relative; }
.hero-copy { padding-left: 3.5vw; }
.hero h1 { max-width: 730px; margin-top: 25px; }
.hero-intro { max-width: 490px; margin: 34px 0 28px; color: var(--warm-ink); font-size: 16px; }
.arrow-link { display: inline-flex; align-items: center; gap: 32px; padding-bottom: 6px; border-bottom: 1px solid currentColor; font-size: 11px; letter-spacing: .04em; }
.arrow-link { transition: color .3s, border-color .3s; }
.arrow-link span { color: var(--petrol); transition: transform .3s cubic-bezier(.2,.7,.2,1), color .3s; }
.arrow-link:hover { color: var(--petrol); border-color: rgba(68,111,112,.65); }
.arrow-link:hover span { transform: translateX(5px); }
.hero-art { margin: 0; height: min(86vh, 940px); display: flex; flex-direction: column; }
.hero-art img { width: 100%; min-height: 0; flex: 1; object-fit: contain; background: var(--paper-deep); padding: 14px; }
.hero-art figcaption { display: flex; justify-content: space-between; padding-top: 10px; color: var(--warm-ink); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.scroll-hint { position: absolute; left: 3.5vw; bottom: 35px; display: flex; align-items: center; gap: 10px; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.scroll-hint i { width: 40px; height: 1px; background: var(--ink); }
.life-thread { width: min(calc(100% - 80px), 1480px); height: 120px; margin: -15px auto 0; color: var(--petrol); opacity: .23; }
.life-thread svg { width: 100%; height: 100%; overflow: visible; }
.life-thread path, .life-thread circle { fill: none; stroke: currentColor; stroke-width: 1; vector-effect: non-scaling-stroke; }
.intro-section { padding: var(--section-space) 3.5vw; position: relative; overflow: hidden; }
.intro-section::after { content: ""; position: absolute; z-index: -1; width: 430px; height: 310px; right: -40px; bottom: 5px; opacity: .075; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg viewBox='0 0 430 310' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23446f70' stroke-width='1'%3E%3Cpath d='M426 286C335 250 319 197 245 173 174 150 150 86 119 28M247 174c47-9 83-40 108-85M196 147c-2-47 16-84 45-118M153 105c-39-7-76-30-105-70M335 247c28-28 47-61 53-102'/%3E%3Cpath d='M355 89c-7 4-13 10-16 18 9 1 17-2 23-9M241 29c-8 4-14 10-17 18 10 1 18-2 24-10M48 35c8 2 16 7 20 14-8 3-17 1-23-5M388 145c-8 3-15 8-19 15 9 2 17 0 24-7'/%3E%3C/g%3E%3C/svg%3E"); }
.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; align-items: end; margin-top: 42px; }
.intro-grid h2 { max-width: 900px; }
.prose { color: var(--warm-ink); font-size: 16px; }
.prose p + p { margin-top: 25px; }
.gallery { padding: var(--section-space) 3.5vw calc(var(--section-space) * 1.15); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.gallery::before { content: ""; position: absolute; z-index: -1; width: 34vw; height: 34vw; right: -12vw; top: 23%; border-radius: 50%; background: radial-gradient(circle, rgba(171,199,210,.22), rgba(171,199,210,0) 68%); }
.gallery::after { content: ""; position: absolute; z-index: -1; width: 26vw; height: 20vw; left: -12vw; bottom: 17%; border-radius: 50%; background: radial-gradient(ellipse, rgba(198,164,162,.10), transparent 68%); filter: blur(12px); }
.section-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 95px; }
.section-header h2 { margin-top: 18px; }
.section-header > p { max-width: 410px; color: var(--warm-ink); }
.gallery-note { width: min(520px, 100%); margin: -40px 0 100px auto; display: grid; grid-template-columns: 55px 1fr; gap: 18px; align-items: start; color: var(--warm-ink); font-size: 11px; }
.gallery-note span { height: 1px; margin-top: 12px; background: var(--ochre); }
.gallery-note p { margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 150px 2.2vw; align-items: start; }
.art-card { min-width: 0; }
.art-card button { display: block; width: 100%; padding: 0; border: 0; background: none; text-align: left; cursor: zoom-in; }
.art-image { display: flex; width: 100%; overflow: hidden; background: var(--paper-deep); }
.art-image img { width: 100%; height: auto; object-fit: contain; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.art-card button:hover img { transform: scale(1.015); }
.gallery-piece--one { grid-column: 1 / span 8; grid-row: 1; }
.gallery-piece--two { grid-column: 9 / span 4; margin-top: 145px; }
.gallery-piece--three { grid-column: 3 / span 8; grid-row: 2; }
.gallery-piece--four { grid-column: 1 / span 6; grid-row: 3; }
.gallery-piece--hero-repeat { grid-column: 4 / span 6; grid-row: 4; margin-top: 0; }
.gallery-piece--five { grid-column: 1 / span 5; grid-row: 5; margin-top: 0; }
.gallery-piece--six { grid-column: 3 / span 8; grid-row: 6; }
.gallery-piece--seven { grid-column: 5 / span 8; }
.gallery-piece--eight { grid-column: 1 / span 7; grid-row: 7; }
.gallery-piece--nine { grid-column: 6 / span 7; grid-row: 8; }
.gallery-piece--ten { grid-column: 1 / span 8; grid-row: 9; }
.gallery-piece--eleven { grid-column: 4 / span 8; }
.gallery-piece--twelve { grid-column: 1 / -1; grid-row: 10; }
.detail-study { min-width: 0; margin: 0; color: var(--warm-ink); }
.detail-study span { display: block; overflow: hidden; background: var(--paper-deep); }
.detail-study img { display: block; width: 100%; height: 100%; object-fit: cover; transform: scale(1.55); }
.detail-study figcaption { max-width: 180px; margin-top: 11px; font-size: 8px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; }
.detail-study--one { grid-column: 9 / span 3; margin-top: 210px; }
.detail-study--one span { aspect-ratio: 1 / 1.15; }
.detail-study--one img { object-position: 66% 42%; transform-origin: 66% 42%; }
.detail-study--two { grid-column: 10 / span 3; margin-top: 170px; }
.detail-study--two span { aspect-ratio: 1 / 1; }
.detail-study--two img { object-position: 42% 54%; transform-origin: 42% 54%; }
.detail-study--three { grid-column: 10 / span 3; margin-top: 230px; }
.detail-study--three span { aspect-ratio: 1 / 1.25; }
.detail-study--three img { object-position: 73% 52%; transform-origin: 73% 52%; }
.art-caption { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-top: 16px; }
.art-caption strong { font: 400 27px var(--serif); transition: color .35s; }
.art-caption small { color: var(--warm-ink); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.art-card button:hover .art-caption strong { color: var(--petrol); }
.framed-link { width: 260px; height: 68px; margin: 100px 0 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(45,64,62,.72); font-size: 10px; background: transparent; transition: color .3s, border-color .3s, background .3s, transform .3s; }
.framed-link:hover { border-color: var(--petrol); background: linear-gradient(105deg, rgba(171,199,210,.10), rgba(167,175,150,.11), rgba(198,164,162,.07)); color: var(--petrol); transform: translateY(-2px); }
.stories { padding: 175px 0; background-color: var(--paper); background-image: radial-gradient(ellipse at 12% 18%, rgba(167,175,150,.18) 0, rgba(167,175,150,.08) 24%, transparent 57%), radial-gradient(ellipse at 90% 78%, rgba(171,199,210,.16) 0, rgba(171,199,210,.06) 22%, transparent 55%); position: relative; overflow: hidden; }
.stories::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .2; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.025' numOctaves='3' seed='8'/%3E%3CfeColorMatrix values='1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 .18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23w)'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
.stories::after { content: ""; position: absolute; width: 420px; height: 420px; right: -180px; bottom: -220px; border: 1px solid rgba(68,111,112,.18); border-radius: 50%; }
.stories-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: center; }
.story-art { margin: 0; }
.story-art img { display: block; width: 100%; max-height: 850px; object-fit: contain; }
.story-art figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.story-art figcaption strong { font: 400 24px var(--serif); }
.story-art figcaption span { color: var(--warm-ink); font-size: 9px; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.story-copy h2 { margin: 35px 0; }
.story-copy > p:not(.section-label) { color: var(--warm-ink); max-width: 540px; }
.story-copy blockquote { max-width: 540px; margin: 34px 0; padding: 25px 0 25px 30px; border-left: 1px solid var(--petrol); font-size: 24px; line-height: 1.4; color: var(--petrol); }
.commission { padding: var(--section-space) 3.5vw; position: relative; overflow: hidden; }
.commission::before { content: ""; position: absolute; z-index: -1; left: -70px; top: 25%; width: 250px; height: 620px; opacity: .065; background: no-repeat center / contain url("data:image/svg+xml,%3Csvg viewBox='0 0 250 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b89a68' stroke-width='1'%3E%3Cpath d='M82 0c5 122 43 198 32 298-7 63-41 136-18 322M111 298c35-31 60-76 68-130M106 369c-43-22-69-58-82-102M99 471c34-24 65-60 83-108M94 536c-30-14-55-37-73-68'/%3E%3Cpath d='M179 168c-10 0-19 4-26 12 9 5 19 5 28 0M24 267c11 1 20 7 27 16-11 4-21 2-30-5M182 363c-10 1-19 6-25 14 10 4 20 2 28-3M21 468c10 1 20 6 27 14-10 4-21 3-29-3'/%3E%3C/g%3E%3C/svg%3E"); }
.commission-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 9vw; align-items: end; margin: 45px 0 115px; }
.commission-intro > p { max-width: 460px; color: var(--warm-ink); }
.process { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process li { display: grid; grid-template-columns: 90px 1fr; padding: 34px 0; border-bottom: 1px solid var(--line); transition: border-color .3s, background .3s; }
.process li:hover { border-color: rgba(68,111,112,.38); background: linear-gradient(90deg, transparent, rgba(167,175,150,.055), transparent); }
.process li > span { color: var(--petrol); font-size: 10px; }
.process li > div { display: grid; grid-template-columns: .75fr 1fr; gap: 8vw; }
.process h3 { font-size: 32px; }
.process p { margin: 0; color: var(--warm-ink); max-width: 520px; }
.primary-link { width: 250px; height: 68px; margin: 60px auto 0; display: grid; place-items: center; border: 1px solid rgba(68,111,112,.58); background: linear-gradient(108deg, rgba(68,111,112,.09), rgba(171,199,210,.16) 55%, rgba(167,175,150,.08)); color: var(--ink); font-size: 11px; transition: transform .25s, border-color .25s, background .25s; }
.primary-link:hover { border-color: var(--petrol); background: linear-gradient(108deg, rgba(68,111,112,.15), rgba(171,199,210,.22) 55%, rgba(167,175,150,.12)); transform: translateY(-3px); }
.about { padding: 155px 0; position: relative; overflow: hidden; background-color: var(--paper); background-image: radial-gradient(ellipse at 22% 76%, rgba(198,164,162,.10), transparent 53%), radial-gradient(ellipse at 90% 18%, rgba(189,145,88,.08), transparent 48%); }
.about::before, .about::after { content: ""; position: absolute; z-index: -1; border: 1px solid rgba(184,154,104,.13); border-radius: 50%; }
.about::before { width: 310px; height: 310px; right: 4vw; top: 50px; }
.about::after { width: 190px; height: 190px; right: 18vw; top: 210px; border-color: rgba(68,111,112,.11); }
.about-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 9vw; align-items: center; }
.about-copy { padding-left: 3.5vw; }
.about-copy h2 { margin: 35px 0; }
.about-copy > p:not(.section-label) { color: var(--warm-ink); max-width: 510px; }
.about-copy .arrow-link { margin-top: 20px; }
.about-art { margin: 0; }
.about-art img { display: block; width: 100%; max-height: 790px; object-fit: contain; }
.about-art figcaption { margin-top: 10px; color: var(--warm-ink); font-size: 9px; text-align: right; letter-spacing: .05em; }
.quote-section { padding: 180px 8vw; text-align: center; position: relative; overflow: hidden; background-color: var(--paper); background-image: radial-gradient(ellipse at 15% 34%, rgba(171,199,210,.045) 0, rgba(171,199,210,.018) 27%, transparent 58%), radial-gradient(ellipse at 83% 68%, rgba(198,164,162,.04) 0, rgba(198,164,162,.014) 25%, transparent 57%), radial-gradient(ellipse at 55% 16%, rgba(167,175,150,.032) 0, transparent 48%); }
.quote-section::before { content: ""; position: absolute; inset: 18px 0; pointer-events: none; opacity: .05; background: no-repeat center / min(1100px, 96%) 92% url("data:image/svg+xml,%3Csvg viewBox='0 0 1100 380' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23446f70' stroke-width='1'%3E%3Cpath d='M-20 258C118 172 230 294 351 217c112-71 175-143 310-91 128 49 205 187 459 82'/%3E%3Cpath d='M351 217c-38-57-31-110 11-158M661 126c74-8 127-43 163-103M225 260c-39 15-75 43-105 87M852 257c29-42 70-76 124-99'/%3E%3Ccircle cx='351' cy='217' r='54'/%3E%3Ccircle cx='661' cy='126' r='93'/%3E%3Ccircle cx='852' cy='257' r='37'/%3E%3C/g%3E%3C/svg%3E"); }
.quote-section::after { content: ""; position: absolute; width: 46%; height: 72%; left: 27%; top: 14%; pointer-events: none; opacity: .038; border: 1px solid var(--old-rose); border-radius: 50%; transform: rotate(-8deg); }
.quote-section p { position: relative; z-index: 1; margin: 0; font: 400 clamp(38px, 4.5vw, 68px)/1.15 var(--serif); }
.quote-ornament { position: relative; z-index: 1; display: block; margin-bottom: 28px; color: rgba(184,154,104,.75); font: 44px var(--serif); }
.contact { padding: 155px 0; position: relative; overflow: hidden; background-color: var(--paper); background-image: radial-gradient(ellipse at 8% 30%, rgba(171,199,210,.25) 0, rgba(171,199,210,.10) 25%, transparent 58%), radial-gradient(ellipse at 76% 88%, rgba(189,145,88,.12) 0, rgba(189,145,88,.05) 19%, transparent 51%), radial-gradient(ellipse at 96% 8%, rgba(167,175,150,.14) 0, transparent 48%); }
.contact::before { content: ""; position: absolute; width: 52vw; height: 52vw; left: -20vw; top: -23vw; border: 1px solid rgba(68,111,112,.13); border-radius: 50%; pointer-events: none; }
.contact::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .13; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.035' numOctaves='4' seed='14'/%3E%3CfeColorMatrix values='1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 .16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
.contact-grid { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; align-items: start; }
.contact-copy h2 { margin: 35px 0; }
.contact-copy > p:not(.section-label) { color: var(--warm-ink); max-width: 510px; }
.contact-copy > a { display: inline-flex; gap: 25px; margin-top: 25px; border-bottom: 1px solid var(--ink); font: 400 clamp(20px, 2.5vw, 34px) var(--serif); }
.contact-form-intro { max-width: 520px; margin: 0 0 46px; font: 400 clamp(28px, 2.6vw, 42px)/1.2 var(--serif); color: var(--ink); }
.contact-form { display: grid; gap: 25px; }
.contact-form label { display: grid; gap: 7px; color: var(--warm-ink); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(45,64,62,.55); border-radius: 0; outline: 0; background: transparent; font-size: 14px; letter-spacing: 0; text-transform: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--ink); }
.contact-form button { width: 190px; height: 58px; padding: 0 18px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(45,64,62,.7); background: transparent; cursor: pointer; font-size: 10px; transition: color .3s, border-color .3s, background .3s, transform .3s; }
.contact-form button:hover { border-color: var(--petrol); background: linear-gradient(105deg, rgba(171,199,210,.12), rgba(198,164,162,.08)); color: var(--petrol); transform: translateY(-2px); }
.form-status { min-height: 24px; margin: 0; color: var(--petrol); font-size: 11px; }
.site-footer { min-height: 230px; padding: 65px 0; display: grid; grid-template-columns: 1fr auto auto; gap: 8vw; align-items: start; font-size: 10px; }
.site-footer nav, .site-footer > div { display: flex; flex-direction: column; gap: 8px; }
.site-footer span { color: var(--warm-ink); }
.art-dialog { width: min(1100px, calc(100% - 50px)); max-height: 92vh; padding: 0; border: 0; background: var(--paper); color: var(--ink); box-shadow: 0 30px 100px rgba(45,64,62,.28); }
.art-dialog::backdrop { background: rgba(45,64,62,.72); backdrop-filter: blur(5px); }
.art-dialog[open] { display: grid; grid-template-columns: 1.25fr .75fr; }
.art-dialog > img { width: 100%; height: 80vh; object-fit: contain; padding: 20px; background: var(--paper-deep); }
.art-dialog > div { padding: 70px 55px; align-self: center; }
.art-dialog h2 { margin: 25px 0 8px; font-size: 60px; }
.dialog-year { color: var(--ochre); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.dialog-story { margin: 34px 0; color: var(--warm-ink); font: 22px/1.5 var(--serif); }
.dialog-close { position: absolute; z-index: 2; top: 15px; right: 22px; padding: 0; border: 0; background: transparent; font: 35px var(--serif); cursor: pointer; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 1px solid var(--petrol); outline-offset: 5px; }
input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 0; }

/* Rechtliche Seiten */
.legal-main { padding: 155px 0 var(--section-space); }
.legal-header { max-width: 900px; margin-bottom: 80px; }
.legal-header h1 { margin: 24px 0 20px; }
.legal-header > p:not(.section-label) { max-width: 680px; color: var(--warm-ink); }
.legal-content { max-width: 900px; }
.legal-content section { padding: 36px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 20px; font-size: clamp(28px, 3.2vw, 42px); }
.legal-content h3 { margin: 26px 0 10px; font: 400 24px/1.3 var(--serif); }
.legal-content p, .legal-content li { color: var(--warm-ink); }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { margin: 12px 0 18px; padding-left: 20px; }
.legal-content address { color: var(--warm-ink); font-style: normal; }
.legal-content a { color: var(--petrol); text-decoration: underline; text-underline-offset: 3px; }
.legal-back { margin-top: 55px; }

/* Gemeinsamer vertikaler Takt für die ruhigen Inhaltsbereiche. */
.stories, .about, .contact { padding-block: var(--section-space); }
.quote-section { padding-block: var(--section-space); }

@media (hover: none) {
  .arrow-link, .framed-link, .primary-link, .contact-form button { min-height: 48px; }
}

@media (max-width: 960px) {
  .page-width { width: min(calc(100% - 40px), 740px); }
  .site-header { height: 74px; padding-inline: 20px; }
  .site-header .wordmark { min-height: 44px; justify-content: center; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; min-width: 68px; min-height: 44px; align-items: center; justify-content: flex-end; gap: 12px; padding: 8px 0; border: 0; background: transparent; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; cursor: pointer; }
  .menu-toggle i, .menu-toggle i::after { display: block; width: 22px; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-toggle i { position: relative; }
  .menu-toggle i::after { content: ""; position: absolute; top: 6px; }
  .menu-open .menu-toggle i { transform: rotate(45deg); }
  .menu-open .menu-toggle i::after { top: 0; transform: rotate(-90deg); }
  .mobile-menu { position: fixed; z-index: 40; inset: 0; padding: 110px 25px 40px; display: flex; flex-direction: column; justify-content: center; background: var(--paper-deep); transform: translateY(-100%); transition: transform .5s cubic-bezier(.77,0,.18,1); }
  .mobile-menu.open { transform: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { border-bottom: 1px solid var(--line); font: 400 43px/1.35 var(--serif); }
  .mobile-menu small { display: inline-block; width: 45px; color: var(--petrol); font: 9px var(--sans); }
  .mobile-menu p { margin: 40px 0 0 45px; color: var(--warm-ink); font-size: 11px; }
  .hero { min-height: auto; padding: 115px 0 65px; grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { padding: 0; }
  .hero-art { height: auto; max-height: none; }
  .hero-art img { max-height: none; }
  .scroll-hint { position: static; }
  .life-thread { width: calc(100% - 40px); height: 80px; }
  .intro-section, .gallery, .commission { padding: var(--section-space-mobile) 0; }
  .intro-section::after { width: 280px; height: 210px; right: -90px; opacity: .055; }
  .intro-grid, .stories-grid, .commission-intro, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 45px; }
  .section-header { flex-direction: column; align-items: start; gap: 30px; margin-bottom: 65px; }
  .gallery-note { margin: 0 0 70px; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 90px 20px; }
  .gallery-piece--one, .gallery-piece--two, .gallery-piece--three, .gallery-piece--four, .gallery-piece--hero-repeat, .gallery-piece--five, .gallery-piece--six, .gallery-piece--seven, .gallery-piece--eight, .gallery-piece--nine, .gallery-piece--ten, .gallery-piece--eleven, .gallery-piece--twelve { grid-column: 1 / -1; grid-row: auto; margin-top: 0; }
  .detail-study { grid-column: 2 / span 4; margin-top: -15px; }
  .detail-study--two { grid-column: 3 / span 4; }
  .detail-study--three { grid-column: 1 / span 4; }
  .art-panorama { width: 100%; }
  .framed-link { margin-top: 70px; }
  .stories, .about, .contact { padding: var(--section-space-mobile) 0; }
  .commission::before { left: -110px; opacity: .045; }
  .stories-grid { gap: 65px; }
  .commission-intro { gap: 40px; margin-bottom: 75px; }
  .process li { grid-template-columns: 45px 1fr; }
  .process li > div { grid-template-columns: 1fr; gap: 8px; }
  .about-grid { gap: 65px; }
  .about-copy { padding: 0; }
  .about-art { grid-row: 1; }
  .about::before { width: 220px; height: 220px; right: -80px; }
  .about::after { display: none; }
  .quote-section { padding: var(--section-space-mobile) 6vw; }
  .quote-section::before { inset: 8px -120px; background-size: 900px 92%; opacity: .038; }
  .quote-section::after { width: 78%; height: 62%; left: 11%; top: 19%; opacity: .028; }
  .contact-grid { gap: 70px; }
  .contact-form-intro { margin-bottom: 38px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .art-dialog[open] { grid-template-columns: 1fr; }
  .art-dialog > img { height: 53vh; }
  .art-dialog > div { padding: 40px 30px; }
  .legal-main { padding: 120px 0 var(--section-space-mobile); }
  .legal-header { margin-bottom: 55px; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 84px; }
  body { font-size: 14px; line-height: 1.72; }
  h1 { font-size: clamp(44px, 14vw, 58px); line-height: .96; overflow-wrap: normal; }
  h2 { font-size: clamp(38px, 11.5vw, 46px); line-height: 1.04; }
  .page-width { width: calc(100% - 32px); }
  .mobile-menu { padding-inline: 20px; }
  .mobile-menu a { min-height: 58px; display: flex; align-items: center; font-size: clamp(32px, 10vw, 43px); }
  .hero-intro { font-size: 15px; }
  .hero { padding-top: 124px; gap: 44px; }
  .hero h1 { margin-top: 20px; }
  .hero-intro { margin-block: 26px 24px; }
  .arrow-link { min-height: 44px; align-items: center; }
  .hero-art img { padding: 8px; }
  .art-caption { flex-direction: column; gap: 2px; }
  .gallery-grid { gap: 75px 14px; }
  .detail-study { grid-column: 2 / span 4; width: 84%; margin-inline: auto; }
  .detail-study--two { grid-column: 3 / span 4; }
  .detail-study--three { grid-column: 1 / span 4; }
  .story-copy blockquote { font-size: 21px; }
  .story-art figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .story-art figcaption span { text-align: left; }
  .process li { padding-block: 28px; }
  .process h3 { font-size: 28px; }
  .contact-copy > a { max-width: 100%; overflow-wrap: anywhere; }
  .contact-form input, .contact-form textarea, .contact-form select { min-height: 48px; font-size: 16px; }
  .contact-form textarea { min-height: 120px; }
  .contact-form button { width: 100%; min-height: 54px; }
  .site-footer { gap: 45px; }
  .site-footer nav { grid-column: 2; }
  .art-dialog { width: calc(100% - 24px); }
  .art-dialog > img { height: 46vh; padding: 8px; }
  .art-dialog h2 { font-size: 46px; }
  body::before { opacity: .025; }
  .life-thread { opacity: .17; }
}

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