
/* Shared public palette. Dark mode stays neutral so the photography carries the color. */
:root {
  color-scheme: light;
  --ink: #202020;
  --paper: #faf9f6;
  --surface: #f0efeb;
  --raised: #fff;
  --band-bg: #202020;
  --muted: #6a6a68;
  --line: #dcdcd7;
  --nav-bg: rgb(250 249 246 / 92%);
  --button-bg: #202020;
  --button-ink: #fff;
  --lime: #c3ef82;
  --gutter: clamp(24px, 5.5vw, 100px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}
html[data-theme=dark] {
  color-scheme: dark;
  --ink: #ececec;
  --paper: #212121;
  --surface: #292929;
  --raised: #303030;
  --band-bg: #171717;
  --muted: #b0b0b0;
  --line: #3b3b3b;
  --nav-bg: rgb(33 33 33 / 93%);
  --button-bg: #ececec;
  --button-ink: #202020;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 14px 'DM Sans', sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { font-family: Manrope, sans-serif; overflow-wrap: anywhere; }
img { max-width: 100%; }
.site-icon { display: inline-block; vertical-align: -.2em; flex-shrink: 0; }
::selection { background: var(--ink); color: var(--paper); }
a, button { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 6px; }
.skip-link { position: fixed; top: -100px; left: 20px; padding: 16px; background: var(--button-bg); color: var(--button-ink); z-index: 100; border-radius: 8px; }
.skip-link:focus { top: 12px; }
.site-nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 var(--gutter); background: var(--nav-bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.site-brand { display: flex; align-items: center; gap: 11px; font: 800 12px Manrope, sans-serif; letter-spacing: .1px; }
.site-brand>div { max-width: 190px; line-height: 1.4; }
.site-brand small { display: block; font-size: 7px; font-weight: 500; letter-spacing: 2px; margin-top: 5px; color: var(--muted); }
.original-logo { width: 46px; height: 46px; object-fit: contain; padding: 4px; background: #171717; border-radius: 50%; flex-shrink: 0; }
#site-links { display: flex; gap: 28px; font-size: 12px; color: var(--muted); }
#site-links a { padding: 10px 0; position: relative; transition: color .2s; }
#site-links a:hover, #site-links a.active { color: var(--ink); }
#site-links a:after { content: ''; position: absolute; height: 2px; left: 0; right: 0; bottom: 3px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
#site-links a:hover:after, #site-links a.active:after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.theme-toggle { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--ink); font-size: 20px; flex-shrink: 0; transition: background .2s, transform .3s; }
.theme-toggle:hover { background: var(--surface); transform: rotate(-12deg); }
.site-button { display: inline-flex; align-items: center; justify-content: center; gap: 24px; background: var(--button-bg); color: var(--button-ink); border: 1px solid transparent; border-radius: 50px; padding: 16px 24px; font-size: 12px; font-weight: 600; line-height: 1.4; transition: transform .35s var(--ease), box-shadow .35s; }
.site-button:hover { transform: translateY(-3px); box-shadow: 0 8px 24px #00000018; }
.site-button span { transition: transform .35s var(--ease); }
.site-button:hover span { transform: translate(3px, -3px); }
.site-button.light { background: var(--lime); color: var(--accent-ink, #202020); }
html[data-theme=dark] .site-button.light { background: #ececec; color: #202020; }
#mobile-menu { display: none; }
.kicker { font-size: 10px; letter-spacing: 1.8px; font-weight: 600; color: var(--muted); line-height: 1.6; }
.text-link { display: inline-flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 12px; border-bottom: 1px solid var(--line); padding: 12px 0; white-space: nowrap; }
.text-link span { font-size: 20px; transition: transform .35s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }

/* Edge-to-edge photography leads the homepage; the remaining sections use an editorial grid. */
.home-hero { position: relative; background: var(--band-bg); }
.hero-frame { position: relative; min-height: 640px; height: min(850px, calc(100svh - 88px)); overflow: hidden; color: #fff; isolation: isolate; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.hero-frame:after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, var(--band-bg) 0%, var(--band-bg) 2%, transparent 42%), linear-gradient(90deg, rgb(0 0 0 / 72%), rgb(0 0 0 / 28%) 60%, rgb(0 0 0 / 8%)), linear-gradient(0deg, rgb(0 0 0 / 55%), transparent 35%); }
.frame-top { position: absolute; top: 32px; left: var(--gutter); right: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.photo-label { display: inline-flex; align-items: center; gap: 10px; background: rgb(15 15 15 / 38%); border: 1px solid rgb(255 255 255 / 26%); color: #fff; border-radius: 30px; padding: 10px 15px; font-size: 8px; letter-spacing: 1.4px; backdrop-filter: blur(10px); }
.photo-label>span { font-size: 16px; line-height: 1; }
.hero-location { color: #e0e0e0; font-size: 10px; letter-spacing: .5px; }
.hero-content { position: relative; width: 100%; padding: 120px var(--gutter) 130px; }
.hero-content .kicker { color: #ddd; font-size: 9px; }
.hero-content h1 { max-width: 1100px; font-size: clamp(48px, 6.8vw, 108px); line-height: 1.08; letter-spacing: -.055em; font-weight: 500; margin: 24px 0 28px; }
.headline-line { display: block; }
.headline-line:nth-child(even) { color: #e0e0e0; }
.hero-content p { max-width: 385px; font-size: 14px; line-height: 1.8; color: #eee; margin: 0 0 28px; text-wrap: pretty; }
.hero-content .site-button.light { background: #f5f5f5; color: #202020; }
.hero-bottom { position: absolute; bottom: 32px; left: var(--gutter); right: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 8px; line-height: 1.9; letter-spacing: 1.6px; color: #eee; }
.hero-bottom a { display: flex; align-items: center; gap: 18px; }
.hero-bottom a span { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #ffffff50; border-radius: 50%; font-size: 18px; transition: background .3s; }
.hero-bottom a:hover span { background: #ffffff25; }
.manifesto { padding: 76px var(--gutter) 64px; border-bottom: 1px solid var(--line); }
.manifesto-type { font: 500 clamp(48px, 8vw, 125px)/1.2 Manrope, sans-serif; letter-spacing: -.065em; }
.manifesto-type span:nth-child(2) { color: var(--muted); }
.manifesto-type span:last-child { color: transparent; -webkit-text-stroke: 1px var(--muted); }
.manifesto-note { margin-top: 30px; display: flex; align-items: flex-start; justify-content: space-between; gap: 35px; }
.manifesto-note p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; max-width: 440px; }
.site-section { padding: 90px var(--gutter); }
.section-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 25px; margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(28px, 3.3vw, 50px); letter-spacing: -.05em; font-weight: 500; margin: 13px 0 0; line-height: 1.2; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.portfolio-card { display: block; min-width: 0; }
.portfolio-card .photo { position: relative; height: 360px; overflow: hidden; background: var(--surface); border-radius: 12px; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .9s; }
.portfolio-card:hover img, .portfolio-card:focus-visible img { transform: scale(1.065); }
.portfolio-card .photo>span { position: absolute; bottom: 18px; left: 18px; background: #f5f5f5; color: #222; border-radius: 30px; font-size: 10px; padding: 12px 17px; opacity: 0; transform: translateY(12px); transition: opacity .4s, transform .5s var(--ease); }
.portfolio-card:hover .photo>span, .portfolio-card:focus-visible .photo>span { opacity: 1; transform: translateY(0); }
.card-line { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 20px; }
.card-line small { font-size: 9px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.card-line h3 { font-size: 21px; font-weight: 500; margin: 7px 0; letter-spacing: -.6px; }
.card-line>span { display: grid; place-items: center; flex-shrink: 0; width: 39px; height: 39px; border: 1px solid var(--line); border-radius: 50%; font-size: 20px; transition: background .3s, color .3s, transform .4s; }
.portfolio-card:hover .card-line>span { background: var(--ink); color: var(--paper); transform: rotate(45deg); }
.selected-work .portfolio-grid { align-items: start; }
.selected-work .portfolio-card:nth-child(2) { margin-top: 65px; }
.selected-work .portfolio-card:nth-child(3) .photo { height: 300px; }
.about-strip { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); align-items: stretch; margin: 0 var(--gutter); border-radius: 18px; overflow: hidden; }
.about-strip>img, .about-photo { width: 100%; min-height: 490px; height: 100%; object-fit: cover; }
.about-photo { position: relative; overflow: hidden; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-photo .photo-label { position: absolute; left: 24px; bottom: 24px; }
.about-strip>div:not(.about-photo) { padding: clamp(32px, 5vw, 80px); align-self: center; }
.about-strip h2 { font-size: clamp(29px, 3.2vw, 48px); line-height: 1.22; font-weight: 500; letter-spacing: -.045em; margin: 26px 0; }
.about-strip p { font-size: 13px; line-height: 1.9; color: var(--muted); margin-bottom: 30px; }
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.journal-card { border-bottom: 1px solid var(--line); padding-bottom: 25px; }
.journal-card>img { width: 100%; height: 230px; object-fit: cover; margin-bottom: 23px; border-radius: 12px; }
.journal-card small { font-size: 9px; color: var(--muted); letter-spacing: .5px; }
.journal-card h3 { font-size: 22px; letter-spacing: -.6px; line-height: 1.4; margin: 15px 0; font-weight: 500; }
.journal-card p { font-size: 13px; color: var(--muted); line-height: 1.8; }
.journal-card span { display: inline-block; font-size: 11px; margin-top: 20px; }
.journal-empty { display: flex; align-items: center; gap: 35px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 38px 0; }
.journal-empty h3 { font-size: 25px; font-weight: 500; letter-spacing: -.7px; margin: 12px 0; }
.journal-empty p { color: var(--muted); line-height: 1.8; max-width: 520px; margin-bottom: 0; }
.journal-empty>.text-link { margin-left: auto; }
.journal-symbol { display: grid; place-items: center; border-radius: 16px; background: var(--surface); width: 95px; height: 110px; flex-shrink: 0; font-size: 55px; font-weight: 400; color: var(--muted); }
.site-cta { margin: 0 var(--gutter) 64px; padding: 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; background: #171717; color: #ececec; border: 1px solid #383838; border-radius: 18px; position: relative; overflow: hidden; }
.site-cta:before { content: ''; position: absolute; top: -140px; right: -80px; width: 380px; height: 380px; border: 1px solid #ffffff0d; border-radius: 50%; box-shadow: 0 0 0 65px #ffffff03, 0 0 0 130px #ffffff02; pointer-events: none; }
.site-cta>div, .site-cta>a { position: relative; }
.site-cta .kicker { color: #aaa; }
.site-cta h2 { font-size: clamp(28px, 3.3vw, 52px); line-height: 1.25; letter-spacing: -.045em; font-weight: 500; margin: 20px 0 0; }
.site-cta>.site-button { flex-shrink: 0; }
.site-cta :focus-visible, .hero-frame :focus-visible { outline-color: #fff; }
.site-footer { padding: 48px var(--gutter) 28px; border-top: 1px solid var(--line); }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 30px; padding-bottom: 50px; }
.footer-top p { font-size: 12px; line-height: 1.9; color: var(--muted); margin: 0; }
.footer-top>div { display: flex; flex-wrap: wrap; gap: 24px; font-size: 11px; color: var(--muted); }
.footer-top a:hover { color: var(--ink); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; font-size: 9px; color: var(--muted); }

/* Gallery, journal, and supporting public pages share the same theme. */
.page-intro { padding: 80px var(--gutter) 50px; border-bottom: 1px solid var(--line); }
.page-intro h1 { font-size: clamp(38px, 5vw, 72px); line-height: 1.15; font-weight: 500; letter-spacing: -.05em; margin: 22px 0; }
.page-intro p { max-width: 590px; color: var(--muted); line-height: 1.8; font-size: 14px; }
.page-intro small { font-size: 10px; color: var(--muted); }
.page-intro+.site-section { padding-top: 40px; }
.category-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 35px; }
.category-nav a { font-size: 11px; padding: 12px 20px; border: 1px solid var(--line); border-radius: 30px; }
.category-nav a.active { background: var(--button-bg); color: var(--button-ink); border-color: var(--button-bg); }
.public-empty { border: 1px dashed var(--line); background: var(--surface); border-radius: 12px; padding: 35px; color: var(--muted); font-size: 13px; line-height: 1.8; margin: 0; }
.article-search { display: flex; gap: 10px; max-width: 550px; margin-bottom: 45px; }
.article-search input { min-width: 0; width: 100%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); padding: 15px; border-radius: 8px; }
.article-detail { max-width: 950px; margin: 0 auto; padding: 70px 35px; }
.back-link { display: block; font-size: 11px; color: var(--muted); margin-bottom: 30px; }
.article-detail h1 { font-size: 48px; font-weight: 500; line-height: 1.25; letter-spacing: -.04em; margin: 22px 0; }
.article-excerpt { font-size: 19px; line-height: 1.7; color: var(--muted); }
.byline { font-size: 10px; border-top: 1px solid var(--line); padding: 18px 0; color: var(--muted); }
.article-cover { width: 100%; max-height: 540px; object-fit: cover; margin: 20px 0; border-radius: 12px; }
.article-body { max-width: 690px; margin: 35px auto; font-size: 16px; line-height: 1.95; color: var(--ink); overflow-wrap: anywhere; }
.share-line { max-width: 690px; margin: 30px auto; }
.photo-wall { columns: 3; column-gap: 20px; }
.photo-wall button { display: block; margin: 0 0 20px; padding: 0; border: 0; background: none; width: 100%; break-inside: avoid; }
.photo-wall img { width: 100%; display: block; border-radius: 8px; }
.delivery { text-align: center; padding: 0 0 65px; }
#lightbox { border: 0; background: transparent; width: 95vw; max-width: 1400px; padding: 35px; max-height: 98vh; overflow: hidden; }
#lightbox::backdrop { background: #101010f2; backdrop-filter: blur(8px); }
#lightbox img { display: block; max-height: 85vh; object-fit: contain; margin: auto; }
#lightbox button { position: absolute; right: 0; top: 0; background: none; border: 0; color: white; font-size: 24px; padding: 10px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
.values-grid span { font-size: 9px; letter-spacing: 1.7px; color: var(--muted); }
.values-grid h3 { font-size: 21px; font-weight: 500; margin: 20px 0; }
.values-grid p { font-size: 13px; line-height: 1.8; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; }
.contact-grid h2 { font-size: 32px; font-weight: 500; }
.contact-grid p { font-size: 13px; color: var(--muted); margin-bottom: 25px; }
.profile-stats { display: flex; justify-content: center; gap: 100px; padding: 50px var(--gutter); border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.profile-stats div { text-align: center; }
.profile-stats strong { font: 500 42px Manrope, sans-serif; color: var(--ink); display: block; }
.profile-stats span { display: block; margin-top: 12px; font-size: 11px; color: var(--muted); }
html[data-theme=dark] .booking-info { background: var(--surface); }
html[data-theme=dark] .booking-info p { color: var(--muted); }
html[data-theme=dark] .booking-fields input, html[data-theme=dark] .booking-fields select, html[data-theme=dark] .booking-fields textarea { background: var(--surface); border-color: var(--line); color: var(--ink); }
html[data-theme=dark] #booking-review { background: var(--surface); color: var(--ink); }
html[data-theme=dark] #booking-summary, html[data-theme=dark] #review-close { color: var(--ink); }

/* Motion is finite and content stays visible if JavaScript is unavailable. */
@keyframes headline-enter { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes photo-enter { from { clip-path: inset(5% 0 0 0); opacity: .5; } to { clip-path: inset(0); opacity: 1; } }
@media (prefers-reduced-motion: no-preference) {
  .headline-line { animation: headline-enter 1s var(--ease) both; }
  .headline-line:nth-child(2) { animation-delay: .12s; }
  .hero-frame { animation: photo-enter 1.2s .15s var(--ease) both; }
}
@media (min-width: 1600px) { .portfolio-card .photo { height: 460px; } .selected-work .portfolio-card:nth-child(3) .photo { height: 400px; } }
@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-brand>div { max-width: 155px; font-size: 10px; }
  #site-links { gap: 18px; }
  .nav-actions { gap: 12px; }
  .nav-actions .site-button { padding: 13px 18px; font-size: 10px; }
  .portfolio-grid { gap: 20px; }
  .portfolio-card .photo { height: 300px; }
  .selected-work .portfolio-card:nth-child(3) .photo { height: 265px; }
  .about-strip>img, .about-photo { min-height: 450px; }
  .site-cta { padding: 45px; }
  .footer-top>div { gap: 16px; }
}
@media (max-width: 850px) {
  .site-nav { height: 76px; }
  #mobile-menu { display: grid; place-items: center; width: 38px; height: 38px; background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 19px; color: var(--ink); order: 3; }
  #site-links { display: none; position: absolute; top: 75px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 20px var(--gutter) 28px; z-index: 21; flex-direction: column; gap: 8px; font-size: 15px; }
  #site-links.open { display: flex; }
  #site-links a { align-self: flex-start; padding: 12px 0; }
  .site-brand { margin-right: auto; }
  .nav-actions { order: 2; }
  .hero-frame { height: min(780px, calc(100svh - 76px)); min-height: 600px; }
  .hero-content h1 { font-size: clamp(46px, 7.5vw, 65px); }
  .hero-bottom a { font-size: 0; }
  .hero-bottom>span { display: none; }
  .manifesto { padding-top: 58px; padding-bottom: 50px; }
  .site-section { padding-top: 65px; padding-bottom: 65px; }
  .about-strip>div:not(.about-photo) { padding: 30px; }
  .site-cta { flex-direction: column; align-items: flex-start; }
  .journal-empty { gap: 24px; flex-wrap: wrap; }
  .journal-empty>div { flex: 1; }
  .journal-empty>.text-link { margin-left: 119px; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 95px; }
  .site-nav { gap: 10px; }
  .original-logo { width: 40px; height: 40px; }
  .site-brand { gap: 8px; }
  .site-brand>div { max-width: 160px; font-size: 10px; }
  .site-brand small { font-size: 6px; letter-spacing: 1.5px; }
  .nav-actions .site-button { display: none; }
  .theme-toggle, #mobile-menu { width: 34px; height: 34px; }
  .hero-frame { height: calc(100svh - 76px); min-height: 610px; max-height: 800px; }
  .hero-image { object-position: 58% center; }
  .hero-frame:after { background: linear-gradient(0deg, var(--band-bg) 0%, var(--band-bg) 2%, transparent 42%), linear-gradient(90deg, #0009, #0003), linear-gradient(0deg, #0009, transparent 85%); }
  .frame-top { top: 24px; }
  .photo-label { font-size: 6px; letter-spacing: 1px; padding: 9px 10px; }
  .hero-location { display: none; }
  .hero-content { padding-top: 110px; padding-bottom: 120px; }
  .hero-content h1 { font-size: clamp(38px, 10.3vw, 62px); margin: 23px 0; }
  .hero-content p { font-size: 13px; margin-bottom: 25px; max-width: 300px; }
  .hero-content .site-button { font-size: 11px; padding: 16px 22px; }
  .hero-bottom { bottom: 24px; font-size: 7px; }
  .hero-bottom>span { display: block; max-width: 185px; }
  .manifesto-type { font-size: clamp(34px, 9.8vw, 60px); white-space: nowrap; }
  .manifesto-note { display: block; margin-top: 24px; }
  .manifesto-note p { font-size: 13px; margin-top: 18px; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 14px; margin-bottom: 28px; }
  .section-heading h2 { font-size: 31px; }
  .section-heading .text-link { padding-top: 2px; font-size: 11px; }
  .portfolio-grid, .journal-grid { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-card .photo, .selected-work .portfolio-card:nth-child(3) .photo { height: auto; aspect-ratio: 4/4.3; }
  .selected-work .portfolio-card:nth-child(2) { margin-top: 0; }
  .portfolio-card .photo>span { opacity: 1; transform: none; font-size: 9px; }
  .card-line { padding-top: 16px; }
  .card-line h3 { font-size: 22px; }
  .about-strip { grid-template-columns: 1fr; border-radius: 12px; }
  .about-strip>img, .about-photo { min-height: 320px; height: 320px; }
  .about-strip>div:not(.about-photo) { padding: 35px 26px; }
  .about-strip h2 { font-size: 31px; }
  .journal-symbol { display: none; }
  .journal-empty { padding: 28px 0; gap: 18px; }
  .journal-empty>div { flex-basis: 100%; }
  .journal-empty h3 { font-size: 24px; }
  .journal-empty .kicker { font-size: 8px; }
  .journal-empty>.text-link { margin-left: 0; }
  .site-cta { padding: 36px 26px; margin-bottom: 48px; border-radius: 12px; gap: 28px; }
  .site-cta h2 { font-size: 29px; }
  .footer-top { gap: 28px; padding-bottom: 35px; }
  .footer-top p { width: 100%; }
  .footer-top>div { gap: 20px; }
  .footer-bottom { font-size: 8px; line-height: 1.6; }
  .page-intro { padding-top: 55px; padding-bottom: 38px; }
  .page-intro h1 { font-size: 40px; }
  .values-grid, .contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .photo-wall { columns: 2; column-gap: 12px; }
  .photo-wall button { margin-bottom: 12px; }
  .article-detail { padding: 45px var(--gutter); }
  .article-detail h1 { font-size: 34px; }
  .article-excerpt { font-size: 16px; }
  .article-body { font-size: 14px; }
  .journal-card>img { height: 260px; }
  .profile-stats { gap: 35px; }
}
@media (hover: none) { .portfolio-card .photo>span { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation: none !important; transition: none !important; }
}

/* Photo-print styling with native horizontal swipe and a gentle lift on hover. */
.home-reel{max-width:1120px;margin-inline:auto;min-width:0}
.home-reel-stage{display:grid;grid-auto-flow:column;grid-auto-columns:min(40%,400px);gap:24px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;scrollbar-width:none;padding:20px 12px 30px;position:relative;isolation:isolate}
.home-reel-stage::-webkit-scrollbar{display:none}
.home-reel-card{position:relative;display:block;aspect-ratio:4/3;min-width:0;border:6px solid var(--raised);border-radius:9px;background:var(--surface);box-shadow:0 8px 22px #0000001c;overflow:hidden;color:white;transform:rotate(var(--print-tilt));transform-origin:center;transition:transform .5s var(--ease),box-shadow .5s;scroll-snap-align:start;scroll-snap-stop:always;scroll-margin-inline:12px;-webkit-tap-highlight-color:transparent}
.home-reel-card img{display:block;width:100%;height:100%;object-fit:cover;-webkit-user-drag:none;user-select:none}
.home-reel-copy{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:20px;background:linear-gradient(transparent 35%,#000b);pointer-events:none}
.home-reel-copy small{font-size:9px;letter-spacing:1px;text-transform:uppercase;color:#eee}
.home-reel-copy h3{font-size:clamp(18px,2vw,25px);font-weight:500;letter-spacing:-.04em;margin:7px 28px 0 0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}
.home-reel-copy>span{position:absolute;bottom:22px;right:18px}
.home-reel-placeholder{height:100%;padding:24px;display:flex;flex-direction:column;justify-content:space-between;background:#444;color:#ddd}.home-reel-placeholder span{font-size:9px;letter-spacing:2px}.home-reel-placeholder strong{font:500 35px Manrope,sans-serif;letter-spacing:-2px}
.home-reel-card:focus-visible{z-index:2;transform:translateY(-5px) rotate(0deg);outline-offset:-6px;outline-color:white;box-shadow:0 14px 25px #0003}
@media(hover:hover) and (pointer:fine){.home-reel-card:hover{z-index:2;transform:translateY(-5px) rotate(0deg);box-shadow:0 14px 25px #0003}.home-reel-stage{cursor:grab}}
.home-reel-stage.is-dragging{scroll-snap-type:none;cursor:grabbing;user-select:none}.home-reel-stage.is-dragging .home-reel-card{cursor:grabbing;transform:rotate(0deg)}
.home-reel-footer{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:4px;color:var(--muted);padding-inline:12px}
.home-reel-footer p{margin:0;line-height:1.6}.home-reel-footer p>span{font-size:9px;letter-spacing:1.5px}.home-reel-footer small{display:block;font-size:11px;margin-top:3px}
.home-reel-controls{display:flex;gap:8px}.home-reel-controls[hidden]{display:none}.home-reel-controls button{display:grid;place-items:center;width:44px;height:44px;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--ink);transition:background .2s}.home-reel-controls button:hover{background:var(--surface)}.home-reel-controls button:disabled{opacity:.3;cursor:default}
body[data-page=home] .selected-work,body[data-page=home] .field-notes{padding-block:48px}
@media(max-width:760px){
 .home-reel-stage{grid-auto-columns:86%;gap:18px;padding-block:14px 22px}
 .home-reel-copy{padding:14px}.home-reel-copy small{font-size:8px}.home-reel-copy h3{font-size:20px;margin-right:20px}.home-reel-copy>span{right:12px;bottom:16px}.home-reel-card{border-width:4px}
 body[data-page=home] .selected-work,body[data-page=home] .field-notes{padding-block:36px}
}

/* Hero photos dissolve in place; the overlay keeps text readable throughout. */
.hero-slideshow{position:absolute;inset:0;z-index:-2;background:#171717}
.hero-slideshow .hero-image{z-index:auto;opacity:0;transition:opacity 1.8s ease-in-out;transform:none}
.hero-slideshow .hero-image.is-active{opacity:1}
.hero-slideshow-controls{position:absolute;right:var(--gutter);bottom:100px;display:flex;align-items:center;gap:10px;z-index:2;padding:3px 8px;border:1px solid #ffffff38;border-radius:30px;background:#15151566;backdrop-filter:blur(8px)}
.hero-slideshow-controls[hidden]{display:none}.hero-dots{display:flex}
.hero-dots button,.hero-pause{display:grid;place-items:center;width:36px;height:38px;border:0;padding:0;background:transparent;color:white;border-radius:50%}
.hero-dots button span{width:6px;height:6px;border-radius:50%;background:#ffffff70;transition:background .3s,box-shadow .3s}
.hero-dots button[aria-pressed=true] span{background:#fff;box-shadow:0 0 0 4px #ffffff26}
.hero-dots button:disabled{opacity:.3}.hero-slideshow-controls button:focus-visible{outline:2px solid #fff;outline-offset:0}
@media(max-width:600px){.hero-slideshow-controls{bottom:90px}.hero-dots button,.hero-pause{width:32px;height:38px}}

/* A short photographer introduction between the two homepage collections. */
.home-profile{margin:0;padding:36px var(--gutter);border-block:1px solid var(--line)}
.home-profile-inner{max-width:1120px;margin:auto;display:grid;grid-template-columns:176px minmax(0,1fr);grid-template-areas:"photo heading" "photo summary" "photo link";column-gap:44px;row-gap:10px;align-items:start}
.home-profile-photo{grid-area:photo;width:176px;height:176px;object-fit:cover;object-position:center 40%;border-radius:10px;align-self:center;background:var(--surface)}
.home-profile-heading{grid-area:heading;min-width:0}.home-profile-heading h2{font-size:clamp(25px,2.7vw,36px);font-weight:500;line-height:1.25;letter-spacing:-.045em;margin:8px 0 0}
.home-profile-summary{grid-area:summary;max-width:64ch;font-size:14px;line-height:1.8;color:var(--muted);margin:0;overflow-wrap:anywhere}
.home-profile-link{grid-area:link;justify-self:start;padding:7px 0;gap:24px}
@media(max-width:600px){
 .home-profile{padding-block:26px}
 .home-profile-inner{grid-template-columns:80px minmax(0,1fr);grid-template-areas:"photo heading" "summary summary" "link link";column-gap:18px;row-gap:16px;align-items:center}
 .home-profile-photo{width:80px;height:80px;border-radius:8px}
 .home-profile-heading .kicker{font-size:8px;letter-spacing:1.1px}
 .home-profile-heading h2{font-size:24px;margin-top:6px}
 .home-profile-summary{font-size:13px;line-height:1.8}
 .home-profile-link{padding:3px 0 7px}
}

/* Shared charcoal bands: a clear separator in light mode, a deeper surface in dark. */
.manifesto,.home-profile,.site-footer{--ink:#ececec;--muted:#b7b7b7;--line:#3b3b3b;--surface:#292929;background:var(--band-bg);color:var(--ink);color-scheme:dark}
.home-profile-photo{outline:1px solid var(--line);outline-offset:3px}
.home-profile-link:hover{color:#fff;border-color:#888}
.home-profile :focus-visible,.site-footer :focus-visible{outline-color:#ececec}

/* Gallery album covers keep the same landscape proportion at every breakpoint. */
body[data-page="gallery"] .portfolio-card .photo{height:auto;aspect-ratio:4/3}
body[data-page="gallery"] .portfolio-card .photo img{display:block;width:100%;height:100%;object-fit:cover}

/* A compact chat shortcut keeps booking within reach without pretending to be live chat. */
.booking-assistant{position:fixed;right:max(20px,env(safe-area-inset-right));bottom:calc(20px + env(safe-area-inset-bottom));z-index:30;color:var(--ink)}
.booking-assistant[hidden],.booking-assistant [hidden]{display:none!important}
.assistant-launcher{position:relative;display:flex;align-items:center;justify-content:center;width:48px;min-width:48px;height:48px;padding:0;margin-left:auto;overflow:hidden;border:1px solid color-mix(in srgb,var(--lime) 72%,white);border-radius:50px;background:var(--lime);color:var(--accent-ink,#14200f);box-shadow:0 8px 28px #0003,inset 0 1px 0 #ffffff30;transition:transform .3s var(--ease),box-shadow .3s}
.assistant-launcher:hover{transform:translateY(-3px);box-shadow:0 12px 32px #0004}.assistant-launcher[aria-expanded=true]{transform:none}
.assistant-chat-mark{display:grid;place-items:center}.assistant-launcher-close{display:none}
.assistant-launcher[aria-expanded=true] .assistant-chat-mark{display:none}.assistant-launcher[aria-expanded=true] .assistant-launcher-close{display:block;order:-1}
.assistant-chat-dots circle{animation:chat-dot 1.2s ease-in-out 1s 2;transform-origin:center}.assistant-chat-dots circle:nth-child(2){animation-delay:1.15s}.assistant-chat-dots circle:nth-child(3){animation-delay:1.3s}
@keyframes chat-dot{0%,65%,100%{transform:translateY(0)}30%{transform:translateY(-2px)}}
.assistant-greeting{position:absolute;right:0;bottom:60px;display:flex;width:242px;max-width:calc(100vw - 40px);padding:10px 8px 10px 15px;background:var(--raised);border:1px solid var(--line);border-radius:16px 16px 4px 16px;box-shadow:0 8px 30px #0002;animation:assistant-appear .35s var(--ease)}
.assistant-greeting-open{flex:1;padding:4px 0;text-align:left;font-size:12px;line-height:1.8;border:0;background:none;color:var(--muted)}.assistant-greeting-open strong{font-weight:500;color:var(--ink)}
#assistant-dismiss{display:grid;place-items:center;align-self:flex-start;border:0;border-radius:50%;width:32px;height:32px;flex-shrink:0;background:transparent;color:var(--muted)}
.assistant-panel{position:absolute;right:0;bottom:62px;width:340px;max-width:calc(100vw - 40px);max-height:calc(100svh - 128px - env(safe-area-inset-bottom));overflow:auto;overscroll-behavior:contain;border:1px solid var(--line);border-radius:18px;background:var(--raised);box-shadow:0 18px 70px #0004;animation:assistant-appear .3s var(--ease)}
.assistant-heading{display:flex;align-items:center;gap:10px;padding:18px;border-bottom:1px solid var(--line)}.assistant-heading img{width:38px;height:38px;object-fit:contain;border-radius:50%;background:#171717;padding:3px}.assistant-heading>div{flex:1;min-width:0}.assistant-heading h2{font-size:15px;font-weight:600;margin:0;letter-spacing:-.3px}.assistant-heading p{font-size:10px;color:var(--muted);margin:5px 0 0}
#assistant-close{display:grid;place-items:center;width:36px;height:36px;flex-shrink:0;border:1px solid var(--line);border-radius:50%;background:transparent;color:var(--ink)}
.assistant-body{padding:18px}.assistant-message{margin:0 0 18px;padding:14px;background:var(--surface);border-radius:3px 13px 13px;font-size:13px;line-height:1.8;color:var(--ink)}
.assistant-book,.assistant-whatsapp{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:46px;padding:12px 15px;border-radius:10px;font-size:12px;line-height:1.5}
.assistant-book{background:var(--button-bg);color:var(--button-ink);border:1px solid transparent}.assistant-whatsapp{margin-top:10px;border:1px solid var(--line);background:transparent;color:var(--ink)}.assistant-book:hover,.assistant-whatsapp:hover{filter:brightness(.92)}
.assistant-note{font-size:10px;color:var(--muted);line-height:1.7;margin:14px 0 0}
@keyframes assistant-appear{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
body:has(dialog[open]) .booking-assistant,body:has(#site-links.open) .booking-assistant,.booking-assistant.is-editing{visibility:hidden;pointer-events:none}
body:has(.booking-assistant) .site-footer{padding-bottom:106px}
@media(max-width:600px){.booking-assistant{right:max(14px,env(safe-area-inset-right));bottom:calc(14px + env(safe-area-inset-bottom))}.assistant-panel{bottom:62px;max-width:calc(100vw - 28px)}.assistant-greeting{bottom:60px;width:230px;max-width:calc(100vw - 28px)}}
@media(prefers-reduced-motion:reduce){.assistant-chat-dots circle,.assistant-panel,.assistant-greeting{animation:none!important}.assistant-launcher:hover{transform:none}}
/* Leave a separate landing spot for the hero's scroll shortcut. */
body:has(.booking-assistant) .hero-bottom{right:calc(var(--gutter) + 60px)}
body:has(.booking-assistant) .hero-bottom>a{flex-shrink:0}



/* Collection controls and accessible photo viewer. */
.pagination{display:flex;align-items:center;justify-content:center;gap:24px;grid-column:1/-1;padding:32px 0;font-size:13px;flex-wrap:wrap}
#lightbox figure{margin:0;max-width:88vw}#lightbox figure img{max-height:78svh;object-fit:contain}#lightbox figcaption,#lightbox-count{color:#eee;text-align:center;font-size:13px;padding:8px;max-width:85vw}#lightbox .lightbox-prev,#lightbox .lightbox-next{position:fixed;top:50%;bottom:auto;width:44px;height:44px;background:#202020c9;border:1px solid #777;border-radius:50%;font-size:30px;color:white;display:grid;place-items:center}#lightbox .lightbox-prev{left:10px;right:auto}#lightbox .lightbox-next{right:10px;left:auto}#lightbox [hidden]{display:none!important}
.article-body figure{margin:24px 0}.article-body figure img{max-width:100%;height:auto}.article-body figcaption{font-size:13px;color:var(--muted)}.article-body ul{padding-left:24px}.article-body h2,.article-body h3,.article-body h4{margin:28px 0 14px}.article-body a{text-decoration:underline}

/* Preserved client collections share the site's current typography and theme. */
.legacy-collections{display:flex;align-items:flex-start;flex-wrap:wrap;gap:16px;max-width:900px;margin-top:32px}
.legacy-collections h2{flex-basis:100%;font-size:1.25rem;margin:24px 0 0}
.legacy-collections .site-button{max-width:100%;white-space:normal;text-align:left}
