:root {
  --ink: #222420;
  --ink-soft: #55594e;
  --paper: #f1eee6;
  --paper-deep: #e5e0d5;
  --cream: #fbfaf6;
  --line: rgba(34, 36, 32, 0.18);
  --red: #a54534;
  --red-dark: #873a2d;
  --sage: #7e8a70;
  --max: 1240px;
  --sans: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(241,238,230,.94); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.header-inner { width: min(var(--max), calc(100% - 64px)); min-height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { display: block; width: 165px; height: auto; max-height: 70px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: .85rem; letter-spacing: .02em; }
.main-nav a { text-decoration: none; }
.main-nav a:not(.nav-cta):hover, .mobile-nav a:hover { color: var(--red); }
.nav-cta { background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 999px; }
.nav-cta:hover { background: var(--red); }
.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: min(720px, calc(100vh - 82px)); background: var(--ink); color: var(--cream); display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.hero-copy { padding: clamp(56px, 8vw, 120px) clamp(32px, 7vw, 108px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 17px; color: var(--red); font-size: .72rem; line-height: 1.2; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; }
.hero .eyebrow { color: #d6ad7c; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 500; }
h1, h2 { font-family: var(--serif); line-height: 1.08; letter-spacing: -.04em; }
h1 { margin-bottom: 26px; font-size: clamp(3.4rem, 6vw, 6.7rem); }
h1 em, h2 em { color: #d6ad7c; font-weight: 500; }
.hero-intro { max-width: 440px; margin-bottom: 32px; color: rgba(251,250,246,.72); font-size: 1.05rem; }
.hero-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.button { border: 0; border-radius: 999px; padding: 13px 21px; text-decoration: none; font-size: .8rem; font-weight: 600; letter-spacing: .04em; display: inline-flex; justify-content: center; align-items: center; gap: 14px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--ink); }
.button-light:hover { background: #fff; }
.button-dark { background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--red); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--red); text-underline-offset: 5px; font-size: .88rem; font-weight: 600; }
.text-link:hover { color: var(--red-dark); }
.text-link-light { color: rgba(251,250,246,.72); }
.text-link-light:hover { color: #fff; }
.hero-image-wrap { min-height: 420px; position: relative; overflow: hidden; border-left: 1px solid rgba(251,250,246,.15); }
.hero-image { width: 100%; height: 100%; min-height: 420px; object-fit: cover; object-position: 53% center; opacity: .9; }
.hero-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(34,36,32,.35), transparent 35%, rgba(34,36,32,.05)); pointer-events: none; }
.hero-caption { position: absolute; bottom: 20px; left: 24px; right: 24px; z-index: 1; display: flex; justify-content: space-between; color: rgba(251,250,246,.8); font-size: .67rem; text-transform: uppercase; letter-spacing: .14em; }

.intro-strip { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; min-height: 168px; display: grid; grid-template-columns: 1fr 2.5fr auto; align-items: center; gap: 32px; border-bottom: 1px solid var(--line); }
.intro-kicker { margin: 0; color: var(--red); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.intro-statement { max-width: 690px; margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.35rem); line-height: 1.2; letter-spacing: -.025em; }
.intro-mark { color: var(--red); font-size: 2.2rem; transform: rotate(15deg); }

.section { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }
.work-section { padding-top: 110px; }
.heading-row { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 42px; }
h2 { margin-bottom: 0; font-size: clamp(2.8rem, 5vw, 5rem); }
.section-note { max-width: 300px; margin: 0 0 8px; color: var(--ink-soft); font-size: .92rem; }
.filter-bar { display: flex; gap: 9px; flex-wrap: wrap; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin-bottom: 30px; }
.filter-button { border: 1px solid transparent; border-radius: 999px; background: transparent; padding: 8px 14px; color: var(--ink-soft); font-size: .79rem; }
.filter-button:hover { color: var(--ink); border-color: var(--line); }
.filter-button.active { color: var(--cream); background: var(--ink); }
.collection-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.collection-card { min-width: 0; text-align: left; border: 0; padding: 0; color: inherit; background: transparent; animation: rise .45s both; }
.collection-card:nth-child(2n) { animation-delay: .04s; }
.collection-card:nth-child(3n) { animation-delay: .08s; }
.collection-card-visual { aspect-ratio: 1 / 1.18; overflow: hidden; background: var(--paper-deep); position: relative; }
.collection-card-visual::after { content: 'View collection ↗'; position: absolute; inset: auto 13px 12px auto; opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; padding: 7px 10px; background: rgba(251,250,246,.92); color: var(--ink); font-size: .68rem; font-weight: 600; }
.collection-card:hover .collection-card-visual::after, .collection-card:focus-visible .collection-card-visual::after { opacity: 1; transform: translateY(0); }
.collection-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.collection-card:hover img { transform: scale(1.045); }
.collection-card-text { padding: 13px 0 8px; display: flex; justify-content: space-between; gap: 10px; align-items: start; border-bottom: 1px solid var(--line); }
.collection-card h3 { margin: 0; font-family: var(--serif); font-size: 1.18rem; line-height: 1.15; }
.collection-card p { margin: 3px 0 0; color: var(--ink-soft); font-size: .71rem; }
.card-arrow { color: var(--red); font-size: 1.15rem; line-height: 1; }

.quote-section { padding: 150px 0 125px; text-align: center; }
.quote-rule { width: 70px; height: 1px; margin: 0 auto 34px; background: var(--red); }
blockquote { max-width: 870px; margin: 0 auto 24px; font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3.6rem); line-height: 1.18; letter-spacing: -.04em; }
.quote-credit { margin: 0; color: var(--red); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 110px); align-items: center; padding: 105px 0 125px; border-top: 1px solid var(--line); }
.about-image-grid { position: relative; min-height: 640px; }
.studio-figure { width: 81%; margin: 0; }
.studio-figure img { width: 100%; height: 560px; object-fit: cover; object-position: center; background: var(--paper-deep); }
figure figcaption { margin-top: 10px; color: var(--ink-soft); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
.portrait-figure { position: absolute; right: 0; bottom: 0; width: 41%; margin: 0; border: 8px solid var(--paper); background: var(--paper); }
.portrait-figure img { width: 100%; aspect-ratio: 1 / 1.22; object-fit: cover; object-position: center top; }
.about-copy { max-width: 560px; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy p { color: var(--ink-soft); }
.about-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; }
.about-copy .text-link { margin-top: 8px; }

.awards-section { padding: 110px 0 120px; border-top: 1px solid var(--line); }
.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.award-card { min-height: 450px; background: var(--cream); border: 1px solid var(--line); display: flex; flex-direction: column; }
.award-card-image img { width: 100%; height: 250px; object-fit: cover; }
.award-card-body { padding: 20px 22px 23px; }
.award-card h3 { margin: 12px 0 8px; font-family: var(--serif); font-size: 1.5rem; line-height: 1.12; }
.award-card p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.award-number { color: var(--red); font-size: .68rem; font-weight: 600; letter-spacing: .15em; }
.award-card-copy { padding: 22px; justify-content: space-between; background: var(--sage); color: var(--cream); }
.award-card-copy .award-number { color: #e9c69c; }
.award-large { margin: 28px 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.6rem) !important; line-height: 1.05; letter-spacing: -.05em; color: var(--cream) !important; }
.award-large em { color: #e9c69c; }

.commission-section { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 510px; background: var(--red); color: var(--cream); }
.commission-art { min-height: 510px; overflow: hidden; }
.commission-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.commission-copy { padding: clamp(42px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.commission-copy .eyebrow { color: #e9c69c; }
.commission-copy h2 { margin-bottom: 26px; font-size: clamp(2.35rem, 4vw, 4.4rem); }
.commission-copy p:not(.eyebrow) { max-width: 460px; color: rgba(251,250,246,.8); }
.commission-copy .button { align-self: flex-start; margin-top: 16px; background: var(--cream); color: var(--ink); }
.commission-copy .button:hover { background: #fff; }

.contact-section { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 10vw, 160px); padding: 140px 0 155px; }
.contact-copy h2 { margin-bottom: 27px; font-size: clamp(2.8rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { max-width: 390px; color: var(--ink-soft); }
.contact-details { display: grid; gap: 4px; margin-top: 34px; color: var(--ink-soft); font-size: .94rem; }
.contact-details a { color: var(--red); text-underline-offset: 4px; }
.contact-details a:hover { color: var(--red-dark); }
.contact-form { display: grid; gap: 8px; align-content: start; }
.contact-form label { margin-top: 12px; color: var(--ink-soft); font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); padding: 10px 0; outline: none; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.contact-form button { justify-self: start; margin-top: 23px; }
.form-note { margin: 0; color: var(--ink-soft); font-size: .71rem; }

.site-footer { padding: 28px max(32px, calc((100% - var(--max)) / 2)); background: var(--ink); color: rgba(251,250,246,.7); font-size: .73rem; }
.footer-top, .footer-bottom { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-top { padding-bottom: 22px; border-bottom: 1px solid rgba(251,250,246,.16); color: var(--cream); }
.footer-top a { color: #d6ad7c; text-decoration: none; }
.footer-name { font-family: var(--serif); font-size: 1.25rem; }
.footer-bottom { padding-top: 17px; }
.footer-bottom a { color: #d6ad7c; }

.gallery-dialog { width: min(1080px, calc(100% - 32px)); max-height: min(880px, calc(100vh - 32px)); border: 0; padding: 32px; background: var(--cream); color: var(--ink); box-shadow: 0 24px 100px rgba(0,0,0,.3); }
.gallery-dialog::backdrop { background: rgba(16,18,15,.82); backdrop-filter: blur(5px); }
.dialog-head { display: flex; justify-content: space-between; align-items: start; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.dialog-head h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.dialog-close { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); font-size: 1.7rem; line-height: 1; }
.dialog-close:hover { background: var(--ink); color: var(--cream); }
.dialog-subtitle { margin: 18px 0 25px; color: var(--ink-soft); font-size: .9rem; }
.dialog-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; overflow-y: auto; padding-right: 4px; }
.dialog-gallery figure { margin: 0; }
.dialog-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--paper-deep); }
.dialog-gallery figcaption { margin-top: 6px; color: var(--ink-soft); font-size: .68rem; text-transform: none; letter-spacing: 0; }

@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 960px) {
  .header-inner, .section, .intro-strip { width: min(var(--max), calc(100% - 40px)); }
  .main-nav { gap: 16px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 500px; }
  .hero-image-wrap { min-height: 380px; height: 50vw; }
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-section { gap: 48px; }
  .about-image-grid { min-height: 500px; }
  .studio-figure img { height: 440px; }
}

@media (max-width: 700px) {
  .header-inner { min-height: 72px; }
  .main-nav { display: none; }
  .menu-toggle { display: block; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; background: transparent; color: var(--ink); font-size: .76rem; }
  .mobile-nav { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 5px 0 18px; flex-direction: column; gap: 2px; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 8px 0; text-decoration: none; }
  .brand img { width: 140px; max-height: 60px; }
  .hero-copy { min-height: 530px; padding: 70px 20px; }
  .hero-image-wrap { height: 58vw; min-height: 250px; }
  .hero-image { min-height: 250px; }
  .intro-strip { min-height: 220px; grid-template-columns: 1fr auto; gap: 12px 20px; padding: 32px 0; }
  .intro-kicker { grid-column: 1 / 3; }
  .intro-statement { grid-column: 1 / 2; }
  .intro-mark { grid-column: 2; grid-row: 2; }
  .section { width: min(var(--max), calc(100% - 40px)); }
  .work-section { padding-top: 75px; }
  .heading-row { align-items: start; flex-direction: column; gap: 16px; margin-bottom: 28px; }
  .section-note { margin: 0; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .collection-card h3 { font-size: 1rem; }
  .quote-section { padding: 90px 0 80px; }
  .about-section { grid-template-columns: 1fr; padding: 75px 0 85px; }
  .about-image-grid { min-height: 450px; }
  .studio-figure { width: 82%; }
  .studio-figure img { height: 420px; }
  .awards-section { padding: 80px 0; }
  .awards-grid { grid-template-columns: 1fr; }
  .award-card { min-height: unset; }
  .award-card-copy { min-height: 340px; }
  .commission-section { grid-template-columns: 1fr; }
  .commission-art { min-height: 300px; max-height: 380px; }
  .commission-copy { padding: 55px 30px 62px; }
  .contact-section { grid-template-columns: 1fr; gap: 55px; padding: 88px 0 100px; }
  .footer-top, .footer-bottom { align-items: start; flex-direction: column; gap: 10px; }
  .gallery-dialog { padding: 22px 16px; }
  .dialog-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
}

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