/* ===========================================================
   F. Dillenburg — Aviation Art
   Light-mode gallery site. Hand-written CSS, no framework.
   =========================================================== */

/* Cormorant Garamond — self-hosted (latin subset), zero third-party requests */
@font-face{
  font-family:"Cormorant Garamond"; font-style:normal; font-weight:400; font-display:swap;
  src:url("fonts/cormorant-garamond-400-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Cormorant Garamond"; font-style:normal; font-weight:500; font-display:swap;
  src:url("fonts/cormorant-garamond-500-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Cormorant Garamond"; font-style:normal; font-weight:600; font-display:swap;
  src:url("fonts/cormorant-garamond-600-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Cormorant Garamond"; font-style:italic; font-weight:400; font-display:swap;
  src:url("fonts/cormorant-garamond-400-italic.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Cormorant Garamond"; font-style:italic; font-weight:500; font-display:swap;
  src:url("fonts/cormorant-garamond-500-italic.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root{
  --bg:        #faf8f4;
  --surface:   #ffffff;
  --ink:       #1c1c1f;
  --muted:     #6b6b73;
  --line:      #e3e0d8;
  --brass:     #c8a96a;
  --brass-deep:#9a7b2e;
  --brass-soft:#f0e7d3;
  --avail-ink: #2f7d4f;
  --avail-bg:  #eef5ef;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 56px);
  --radius: 4px;

  --shadow-soft: 0 1px 2px rgba(28,28,31,.04), 0 8px 30px rgba(28,28,31,.06);
  --shadow-lift: 0 2px 6px rgba(28,28,31,.06), 0 22px 60px rgba(28,28,31,.12);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{ display:block; max-width:100%; }

a{ color:inherit; text-decoration:none; }

h1,h2,h3,h4{ font-family:var(--serif); font-weight:500; margin:0; line-height:1.08; letter-spacing:.005em; }

p{ margin:0; text-wrap:pretty; }

.tnum{ font-variant-numeric:tabular-nums; }

.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }

/* Eyebrow ------------------------------------------------- */
.eyebrow{
  font-family:var(--sans);
  font-size:12px;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--brass-deep);
  margin:0;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--sans); font-size:14px; font-weight:600;
  letter-spacing:.04em;
  padding:.86em 1.5em;
  border-radius:var(--radius);
  border:1px solid transparent;
  cursor:pointer;
  transition:background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn--primary{
  background:var(--brass);
  color:#241c0a;
  border-color:var(--brass);
}
.btn--primary:hover{ background:var(--brass-deep); border-color:var(--brass-deep); color:#fff; }

.btn--ghost{
  background:transparent;
  color:var(--brass-deep);
  border-color:var(--brass);
}
.btn--ghost:hover{ background:var(--brass-soft); }

.btn--quiet{
  background:transparent;
  color:var(--ink);
  border-color:var(--line);
}
.btn--quiet:hover{ border-color:var(--ink); }

.btn--lg{ font-size:15px; padding:1.05em 1.9em; }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:60;
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom:1px solid transparent;
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height:74px; gap:24px;
}
.wordmark{
  font-family:var(--serif);
  font-size:28px; font-weight:600; letter-spacing:.01em;
  line-height:1; white-space:nowrap;
  color:var(--ink);
  transition:color .3s ease;
}
.wordmark .amp{ color:var(--brass); font-style:italic; }

.nav{ display:flex; align-items:center; gap:30px; }
.nav-links{ display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:13.5px; font-weight:500; letter-spacing:.04em;
  color:var(--muted);
  position:relative; padding:4px 0;
  transition:color .25s ease;
}
.nav-links a::after{
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1px;
  background:var(--brass); transition:right .25s ease;
}
.nav-links a:hover{ color:var(--ink); }
.nav-links a:hover::after{ right:0; }

/* scrolled state */
.site-header.is-solid{
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(140%) blur(10px);
  border-bottom-color:var(--line);
  box-shadow:0 1px 0 rgba(28,28,31,.02), 0 10px 30px rgba(28,28,31,.05);
}
.site-header.is-solid .wordmark{ color:var(--ink); }
.site-header.is-solid .nav-links a{ color:var(--muted); }
.site-header.is-solid .nav-links a:hover{ color:var(--ink); }

.nav-toggle{ display:none; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  position:relative;
  background:var(--bg);
  color:var(--ink);
  padding-top:clamp(98px,13vh,134px);
  padding-bottom:clamp(40px,7vh,76px);
  overflow:hidden;
}
.hero-wrap{
  display:grid;
  grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);
  gap:clamp(28px,4.2vw,68px);
  align-items:center;
}
.hero .eyebrow{ color:var(--brass-deep); }
.hero h1{
  font-size:clamp(33px,4.2vw,58px);
  line-height:1.05;
  margin:.34em 0 .46em;
  font-weight:500;
}
.hero h1 em{ font-style:italic; color:var(--brass-deep); }
.hero-sub{
  font-size:clamp(16px,1.35vw,19px);
  max-width:48ch; color:var(--muted);
  margin-bottom:1.9em; line-height:1.55;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; }

@media (min-width:921px){
  .hero-inner{ order:1; }
  .hero-banner{ order:2; }
}

.hero-banner{ margin:0; }
.hero-card{
  appearance:none; -webkit-appearance:none; font:inherit; color:inherit;
  display:block; width:100%; padding:0; border:0; background:transparent;
  cursor:pointer; text-align:left;
}
.hero-card:focus-visible{ outline:none; }

/* image fills the card; caption floats as a pill */
.hero-art{
  position:relative;
  aspect-ratio:3/2;
  border-radius:6px;
  overflow:hidden;
  background:#1c1c1f;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lift);
  transition:box-shadow .26s ease, transform .26s ease;
}
.hero-card:hover .hero-art{ transform:translateY(-3px); box-shadow:0 18px 50px rgba(28,28,31,.2); }
.hero-card:focus-visible .hero-art{ outline:2px solid var(--brass-deep); outline-offset:4px; }
.hero-art .work-art{
  position:absolute; inset:0;
  width:100%; height:100%;
  aspect-ratio:auto; border-radius:0; background:#1c1c1f; overflow:hidden;
}
.hero-art .work-art img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  transition:transform .8s cubic-bezier(.2,.7,.3,1);
}
.hero-card:hover .hero-art .work-art img{ transform:scale(1.045); }
.hero-art::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(10,14,22,.05) 0%, rgba(10,14,22,0) 40%, rgba(10,14,22,.58) 100%);
}
.hero-pill{
  position:absolute; left:15px; bottom:15px; z-index:2;
  display:inline-flex; align-items:center; gap:9px;
  max-width:calc(100% - 30px);
  background:rgba(20,22,28,.58); backdrop-filter:blur(10px) saturate(140%);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px; padding:.5em 1em .5em .8em;
  color:#fff; font-family:var(--sans); font-size:12.5px; letter-spacing:.01em;
}
.hero-pill .swatch{ flex:none; width:8px; height:8px; border-radius:50%; background:var(--brass); }
.hero-pill .pill-text{ white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; }
.hero-pill .pill-text b{ font-weight:600; }
/* Magnum-opus variant: deep-green plaque with brass tag */
.hero-pill--opus{
  max-width:calc(100% - 30px);
  background:linear-gradient(180deg, #1f5a3a 0%, #18472e 100%);
  border-color:rgba(255,255,255,.22);
}
.hero-card:hover .hero-pill--opus, .hero-card:focus-visible .hero-pill--opus{ max-width:calc(100% - 190px); }
.hero-pill--opus .swatch{ background:var(--brass); box-shadow:0 0 0 3px rgba(200,169,106,.25); }
.hero-pill--opus .pill-tag{
  flex:none; margin-left:2px; padding-left:10px;
  border-left:1px solid rgba(255,255,255,.28);
  font-size:10px; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  color:var(--brass); white-space:nowrap;
}
.hero-zoom{
  position:absolute; right:15px; bottom:15px; z-index:2;
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.94); color:var(--ink);
  font-family:var(--sans); font-size:12px; font-weight:600; letter-spacing:.02em;
  padding:.5em .9em; border-radius:999px;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s ease, transform .25s ease;
}
.hero-zoom svg{ width:14px; height:14px; }
.hero-card:hover .hero-zoom, .hero-card:focus-visible .hero-zoom{ opacity:1; transform:none; }

/* ---------------------------------------------------------
   Section scaffolding
   --------------------------------------------------------- */
.section{ padding-block:clamp(72px, 11vh, 132px); }
.section--tint{ background:var(--surface); border-block:1px solid var(--line); }

.section-head{ max-width:720px; margin-bottom:clamp(40px,6vh,64px); }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-title{
  font-size:clamp(32px, 4.6vw, 54px);
  margin:.28em 0 .35em;
}
.section-lede{ font-size:clamp(17px,1.4vw,19px); color:var(--muted); max-width:60ch; }
.section-head.center .section-lede{ margin-inline:auto; }

/* ---------------------------------------------------------
   Collection grid
   --------------------------------------------------------- */
.collection-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:clamp(20px, 2.4vw, 34px);
}
.work{ display:flex; }
.work--lead{ grid-column:span 2; grid-row:span 1; }

.work-card{
  appearance:none; -webkit-appearance:none;
  font:inherit; text-align:left; color:inherit;
  width:100%;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  cursor:pointer;
  display:flex; flex-direction:column;
  transition:box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.work-card:hover{ box-shadow:var(--shadow-lift); transform:translateY(-3px); border-color:#d8d3c6; }
.work-card:focus-visible{ outline:2px solid var(--brass-deep); outline-offset:3px; }

.work-art{
  position:relative;
  background:#f3f0e9;
  border-radius:2px;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
  aspect-ratio:1/1;
}
.work--lead .work-art{ aspect-ratio:4/3; }
.work-art img{
  width:100%; height:100%; object-fit:cover; object-position:center;
}

.work-foot{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  padding:16px 6px 6px;
}
.work-name{ font-size:21px; line-height:1.12; }
.work--lead .work-name{ font-size:26px; }
.work-origin{ font-size:12.5px; color:var(--muted); margin-top:5px; letter-spacing:.02em; }

/* status pill */
.pill{
  flex:none;
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--sans); font-size:11.5px; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--avail-ink); background:var(--avail-bg);
  border:1px solid #d6e6da;
  padding:5px 11px; border-radius:999px;
  white-space:nowrap; margin-top:3px;
}
.pill::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--avail-ink); }

/* placeholder art */
.art-ph{
  width:100%; height:100%;
  background:
    repeating-linear-gradient(135deg, #efece4 0 11px, #e9e5db 11px 22px);
  display:flex; align-items:center; justify-content:center; text-align:center;
  padding:24px;
}
.art-ph span{
  font-family:ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size:11px; letter-spacing:.06em; line-height:1.7;
  color:#9a948a; text-transform:uppercase;
}
.art-ph span b{ display:block; color:#6f6a60; font-weight:600; margin-bottom:4px; }

/* ---------------------------------------------------------
   Originals / Quotes
   --------------------------------------------------------- */
.originals-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr;
  gap:clamp(40px,6vw,88px); align-items:center;
}
.price-card{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:clamp(30px,4vw,48px);
}
.price-card .eyebrow{ margin-bottom:14px; }
.price-figure{
  font-family:var(--serif); font-weight:500;
  font-size:clamp(40px,5vw,60px); line-height:1; margin-bottom:6px;
}
.price-figure .cur{ color:var(--brass-deep); }
.price-note{ color:var(--muted); font-size:15px; margin-bottom:26px; }

.trust-list{ list-style:none; margin:0; padding:0; display:grid; gap:18px; }
.trust-list li{ display:flex; gap:16px; align-items:flex-start; }
.trust-mark{
  flex:none; width:30px; height:30px; margin-top:2px;
  border:1px solid var(--brass); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--brass-deep);
}
.trust-mark svg{ width:15px; height:15px; }
.trust-list h4{ font-family:var(--sans); font-size:15.5px; font-weight:700; letter-spacing:.01em; margin-bottom:2px; }
.trust-list p{ font-size:14.5px; color:var(--muted); line-height:1.55; }

/* ---------------------------------------------------------
   Commissions
   --------------------------------------------------------- */
.commission-lead{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,72px); align-items:start; }
.commission-note{
  border-left:2px solid var(--brass);
  padding:6px 0 6px 22px;
  font-family:var(--serif); font-style:italic;
  font-size:clamp(20px,2vw,26px); line-height:1.4; color:var(--ink);
}
.commission-aside p{ color:var(--muted); margin-bottom:18px; font-size:15.5px; }
.commission-aside p:last-of-type{ margin-bottom:28px; }

.steps{
  list-style:none; margin:54px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(5,1fr); gap:0;
}
.step{ position:relative; padding:0 26px 4px 0; }
.step-badge{
  position:relative; z-index:1;
  width:52px; height:52px; border-radius:50%;
  background:var(--brass); color:#241c0a;
  font-family:var(--serif); font-weight:600; font-size:25px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 14px rgba(154,123,46,.32);
  margin-bottom:18px;
}
.step:not(:last-child)::after{
  content:""; position:absolute; z-index:0;
  top:26px; left:52px; right:-26px; height:4px;
  transform:translateY(-50%);
  background:var(--brass-soft);
}
.step h4{ font-family:var(--sans); font-size:16px; font-weight:700; margin-bottom:6px; letter-spacing:.005em; }
.step p{ font-size:14px; color:var(--muted); line-height:1.5; }
.step .accent{ color:var(--brass-deep); font-weight:600; }

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.about-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:clamp(36px,5vw,72px); align-items:center; }
.about-portrait{
  border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; background:#eceae3; box-shadow:var(--shadow-soft);
}
.about-portrait img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) contrast(1.02); }
.about-body p{ color:var(--muted); font-size:17px; margin-bottom:18px; }
.about-body p strong{ color:var(--ink); font-weight:600; }
.about-cred{
  list-style:none; margin:28px 0 0; padding:0;
  display:grid; grid-template-columns:1fr 1fr; gap:18px 32px;
  border-top:1px solid var(--line); padding-top:28px;
}
.about-cred li{ font-size:14.5px; }
.about-cred .k{ font-family:var(--sans); font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--brass-deep); display:block; margin-bottom:3px; }
.about-cred .v{ color:var(--ink); }

/* ---------------------------------------------------------
   Updates strip
   --------------------------------------------------------- */
.updates{ background:var(--ink); color:#f4f1ea; }
.updates .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:28px;
  padding-block:clamp(34px,5vh,52px); flex-wrap:wrap;
}
.updates h3{ font-size:clamp(24px,2.6vw,32px); color:#fff; }
.updates h3 .at{ color:var(--brass); }
.updates p{ color:rgba(244,241,234,.7); font-size:15px; margin-top:6px; }
.x-link{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.28); border-radius:var(--radius);
  padding:.85em 1.5em; font-size:14px; font-weight:600; letter-spacing:.03em;
  transition:background .2s ease, border-color .2s ease;
}
.x-link:hover{ background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.55); }
.x-link svg{ width:17px; height:17px; }

/* ---------------------------------------------------------
   Contact
   --------------------------------------------------------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,5vw,72px); align-items:center; }
.contact-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(28px,3.5vw,40px);
}
.email-row{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap;
  margin:18px 0 14px;
}
.email-chip{
  font-family:ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size:16px; letter-spacing:.01em;
  background:var(--bg); border:1px solid var(--line); border-radius:var(--radius);
  padding:.7em 1em; color:var(--ink);
}
.copy-btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--sans); font-size:13.5px; font-weight:600; letter-spacing:.03em;
  background:transparent; color:var(--brass-deep);
  border:1px solid var(--brass); border-radius:var(--radius);
  padding:.7em 1.1em; cursor:pointer; transition:background .18s ease, color .18s ease;
}
.copy-btn:hover{ background:var(--brass-soft); }
.copy-btn.copied{ background:var(--avail-bg); border-color:#cfe3d6; color:var(--avail-ink); }
.copy-btn svg{ width:15px; height:15px; }
.contact-meta{ color:var(--muted); font-size:14.5px; }
.contact-meta a{ color:var(--brass-deep); border-bottom:1px solid var(--brass); }

/* two channels: Email + X */
.contact-cards{ display:grid; gap:18px; }
.channel{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(22px,2.6vw,30px);
}
.channel-head{ display:flex; align-items:center; gap:13px; }
.channel-ico{
  flex:none; width:42px; height:42px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  background:var(--brass-soft); color:var(--brass-deep);
}
.channel-ico svg{ width:21px; height:21px; }
.channel-title{ font-family:var(--sans); font-weight:700; font-size:16px; line-height:1.12; }
.channel-kicker{ font-size:12.5px; color:var(--muted); margin-top:2px; }
.channel-grow{ flex:1; }
.channel--x{ display:block; text-decoration:none; color:inherit; transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.channel--x:hover{ border-color:#d8d3c6; box-shadow:var(--shadow-soft); transform:translateY(-2px); }
.channel--x .channel-ico{ background:var(--ink); color:#fff; }
.x-live{
  display:inline-flex; align-items:center; gap:7px;
  font-size:10.5px; font-weight:700; letter-spacing:.13em; text-transform:uppercase;
  color:var(--avail-ink);
}
.x-live .dot{ position:relative; width:7px; height:7px; border-radius:50%; background:var(--avail-ink); }
.x-live .dot::after{ content:""; position:absolute; inset:0; border-radius:50%; background:var(--avail-ink); animation:pulse 1.9s ease-out infinite; }
@keyframes pulse{ 0%{ transform:scale(1); opacity:.55; } 100%{ transform:scale(3.2); opacity:0; } }
@media (prefers-reduced-motion: reduce){ .x-live .dot::after{ animation:none; } }
.channel-foot{ display:flex; align-items:center; justify-content:space-between; gap:14px; margin-top:16px; }
.channel-go{ display:inline-flex; align-items:center; gap:7px; font-size:13.5px; font-weight:600; color:var(--brass-deep); white-space:nowrap; }
.channel-go svg{ width:15px; height:15px; }
.channel p{ font-size:14px; color:var(--muted); line-height:1.55; margin-top:14px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{ background:var(--bg); border-top:1px solid var(--line); padding-block:54px 38px; }
.footer-top{ display:flex; justify-content:space-between; gap:32px; flex-wrap:wrap; align-items:flex-start; }
.footer-wordmark{ font-family:var(--serif); font-size:24px; font-weight:600; }
.footer-wordmark .amp{ color:var(--brass); font-style:italic; }
.footer-links{ display:flex; gap:26px; flex-wrap:wrap; }
.footer-links a{ font-size:14px; color:var(--muted); }
.footer-links a:hover{ color:var(--ink); }
.footer-disclaimer{
  margin-top:34px; padding-top:24px; border-top:1px solid var(--line);
  font-size:12.5px; color:var(--muted); line-height:1.6; max-width:80ch;
}
.footer-copy{ margin-top:16px; font-size:12.5px; color:var(--muted); }

/* ---------------------------------------------------------
   Lightbox
   --------------------------------------------------------- */
.lightbox{
  position:fixed; inset:0; z-index:120;
  display:none; align-items:center; justify-content:center;
  padding:clamp(16px,3vw,48px);
  background:rgba(20,22,28,.72);
  backdrop-filter:blur(6px);
}
.lightbox.open{ display:flex; }
.lb-dialog{
  position:relative;
  background:var(--surface);
  border-radius:6px;
  width:min(1040px, 100%);
  max-height:92vh;
  overflow:hidden;
  display:grid; grid-template-columns:1.15fr .85fr; grid-template-rows:minmax(0,1fr);
  box-shadow:0 40px 120px rgba(0,0,0,.5);
  animation:lbIn .32s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes lbIn{ from{ opacity:0; transform:translateY(14px) scale(.985);} to{opacity:1; transform:none;} }
@media (prefers-reduced-motion: reduce){ .lb-dialog{ animation:none; } }

.lb-art{
  background:#1c1c1f;
  display:flex; align-items:center; justify-content:center;
  padding:26px; min-height:300px; min-width:0;
}
.lb-art img{ max-width:100%; max-height:calc(92vh - 52px); object-fit:contain; box-shadow:0 18px 50px rgba(0,0,0,.45); }
.lb-art .art-ph{ border-radius:2px; min-height:320px; }

.lb-info{ padding:clamp(28px,3vw,40px); overflow-y:auto; min-height:0; }
.lb-info .eyebrow{ margin-bottom:10px; }
.lb-title{ font-size:clamp(28px,3vw,38px); line-height:1.06; margin-bottom:4px; }
.lb-sub{ color:var(--muted); font-size:14px; letter-spacing:.02em; margin-bottom:20px; }
.lb-story{ font-size:15.5px; color:#3a3a40; line-height:1.62; margin-bottom:24px; }
.lb-specs{ margin:0 0 26px; display:grid; grid-template-columns:auto 1fr; gap:10px 22px; border-top:1px solid var(--line); padding-top:20px; }
.lb-specs dt{ font-size:11px; letter-spacing:.13em; text-transform:uppercase; color:var(--brass-deep); align-self:center; }
.lb-specs dd{ margin:0; font-size:14.5px; color:var(--ink); }
.lb-coa{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--avail-ink); margin-bottom:24px; }
.lb-coa svg{ width:16px; height:16px; flex:none; }
.lb-actions{ display:flex; gap:12px; flex-wrap:wrap; }

.lb-close{
  position:absolute; top:14px; right:14px; z-index:3;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.9); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  color:var(--ink); transition:background .18s ease, transform .18s ease;
}
.lb-close:hover{ background:#fff; transform:rotate(90deg); }
.lb-close svg{ width:18px; height:18px; }

.lb-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.86); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  color:var(--ink); transition:background .18s ease;
}
.lb-nav:hover{ background:#fff; }
.lb-nav svg{ width:20px; height:20px; }
.lb-prev{ left:14px; }
.lb-next{ left:calc(1.15/2 * 100%); } /* fallback overridden below */
.lb-next{ right:auto; }
@media (min-width:861px){ .lb-prev{ left:14px; } .lb-next{ left:auto; right:calc(.85 * 100% + 14px); } }

/* ---------------------------------------------------------
   Reveal-on-scroll
   --------------------------------------------------------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width:1000px){
  .originals-grid, .commission-lead, .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:repeat(3,1fr); row-gap:34px; }
  .step{ padding-right:18px; }
  .step:not(:last-child)::after{ display:none; }
  /* Stack image over description and let the whole dialog scroll */
  .lb-dialog{ display:block; max-height:92vh; overflow-y:auto; -webkit-overflow-scrolling:touch; }
  .lb-art{ min-height:auto; max-height:50vh; padding:18px; }
  .lb-art img{ max-height:46vh; }
  .lb-info{ max-height:none; overflow:visible; }
}
@media (max-width:920px){
  .hero-wrap{ grid-template-columns:1fr; gap:30px; }
  .hero-banner{ order:-1; }
  .hero-inner{ max-width:640px; }
}
@media (max-width:860px){
  .collection-grid{ grid-template-columns:repeat(2,1fr); }
  .work--lead{ grid-column:span 2; }
  .work--lead .work-art{ aspect-ratio:16/9; }
}
@media (max-width:720px){
  .nav-links{ display:none; }
  .nav-toggle{
    display:inline-flex; align-items:center; gap:8px;
    background:transparent; border:1px solid currentColor; color:inherit;
    border-radius:var(--radius); padding:.5em .9em; font-size:13px; cursor:pointer;
  }
  .site-header .wordmark{ font-size:22px; }
  .updates .wrap{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:560px){
  .collection-grid{ grid-template-columns:1fr; }
  .work--lead{ grid-column:span 1; }
  .work-art, .work--lead .work-art{ aspect-ratio:4/3; }
  .steps{ grid-template-columns:1fr; row-gap:0; }
  .step{ display:grid; grid-template-columns:52px 1fr; gap:0 18px; padding:0 0 26px; }
  .step-badge{ margin-bottom:0; grid-row:1 / span 2; }
  .step h4{ align-self:center; }
  .step:not(:last-child)::after{
    display:block; top:52px; bottom:0; left:26px; right:auto;
    width:4px; height:auto; transform:translateX(-50%);
  }
  .about-cred{ grid-template-columns:1fr; }
  .hero h1{ font-size:clamp(32px,8.5vw,46px); }
}

/* ---------------------------------------------------------
   Build additions: nav CTA, mobile menu, small notes
   --------------------------------------------------------- */
/* <picture> wrappers must not affect layout: the inner <img> behaves as the
   direct child it replaced in the handoff, so object-fit rules apply cleanly
   (without this, landscape art letterboxes against the card background). */
picture{ display:contents; }

/* Collection thumbnails: show the FULL framed painting on a white card —
   no cover-cropping of the frame, and no visible letterbox bands. */
.collection-grid .work-art{ background:var(--surface); }
.collection-grid .work-art img{ object-fit:contain; }

/* hero: match the framed (golden-border) artwork's 4:3 so the whole border shows, no crop */
.hero-art{ aspect-ratio:4/3; }

/* hero: single 'View Specs' pill (replaces the opus plaque + hover zoom), right-aligned */
.hero-pill--specs{ left:auto; right:15px; gap:7px; font-weight:600; }

/* How to Buy */
.buy-card{
  display:grid; grid-template-columns:auto 1fr; gap:clamp(24px,4vw,52px);
  align-items:center;
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(28px,4vw,46px); box-shadow:var(--shadow-soft);
}
.buy-card-media{
  display:flex; flex-direction:column; align-items:center; gap:14px; text-align:center;
  padding-right:clamp(0px,2vw,20px);
  border-right:1px solid var(--line);
}
.paypal-mark{ width:132px; height:auto; display:block; }
.buy-soon{
  font-family:var(--sans); font-size:10.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--brass-deep); background:var(--brass-soft); border:1px solid #ead9b8;
  padding:5px 11px; border-radius:999px; white-space:nowrap;
}
.buy-card-body > p{ font-size:17px; color:var(--ink); margin-bottom:18px; }
.buy-points{ list-style:none; margin:0; padding:0; display:grid; gap:12px; }
.buy-points li{ position:relative; padding-left:26px; color:var(--muted); font-size:15.5px; line-height:1.55; }
.buy-points li::before{
  content:""; position:absolute; left:1px; top:.35em; width:13px; height:13px;
  border:2px solid var(--brass); border-radius:50%;
}
.buy-points strong{ color:var(--ink); font-weight:600; }
.buy-points a{ color:var(--brass-deep); border-bottom:1px solid var(--brass); }
@media (max-width:680px){
  .buy-card{ grid-template-columns:1fr; gap:24px; }
  .buy-card-media{
    flex-direction:row; flex-wrap:wrap; align-items:center;
    justify-content:flex-start; gap:14px 16px;
    border-right:0; border-bottom:1px solid var(--line); padding:0 0 20px;
  }
  .buy-soon{ white-space:normal; }
}
.hero-pill--specs svg{ width:14px; height:14px; flex:none; }
.hero-card:hover .hero-pill--specs,
.hero-card:focus-visible .hero-pill--specs{ background:rgba(20,22,28,.76); border-color:rgba(255,255,255,.32); }

/* "Get a Quote" lives inline in the bar on desktop, inside the menu on mobile */
.nav-cta{ display:none; }
.price-figure .cur{ color:var(--brass-deep); }

/* lightbox "not for sale" note (hero) */
.lb-note{ font-size:13px; color:var(--muted); font-style:italic; margin:-6px 0 22px; }

/* contact email card supporting line */
.channel-note{ font-size:13.5px; color:var(--muted); line-height:1.55; margin-top:14px; }

@media (max-width:720px){
  /* hide the inline bar CTA; the menu carries it instead */
  .nav-cta-inline{ display:none; }
  /* scale the wordmark down on small phones so it never forces horizontal scroll */
  .site-header .wordmark{ font-size:clamp(16px, 5vw, 22px); }

  .site-header.nav-open{
    background:rgba(255,255,255,.97);
    backdrop-filter:saturate(140%) blur(10px);
    border-bottom-color:var(--line);
    box-shadow:0 10px 30px rgba(28,28,31,.06);
  }
  .site-header.nav-open .nav-links{
    display:flex; flex-direction:column; align-items:stretch; gap:0;
    position:absolute; left:0; right:0; top:74px;
    background:var(--surface);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:6px var(--gut) 18px;
    box-shadow:var(--shadow-soft);
  }
  .site-header.nav-open .nav-links li{ width:100%; }
  .site-header.nav-open .nav-links > li > a{
    display:block; width:100%; padding:13px 2px; font-size:16px;
    color:var(--ink); border-bottom:1px solid var(--line); letter-spacing:.01em;
  }
  .site-header.nav-open .nav-links > li > a::after{ display:none; }
  .site-header.nav-open .nav-cta{ display:block; margin-top:16px; border:0; }
  .site-header.nav-open .nav-cta > a{ width:100%; }
  .nav-toggle[aria-expanded="true"]{
    background:var(--brass-soft); border-color:var(--brass); color:var(--brass-deep);
  }
}
