:root {
  --ink: #1c211d;
  --paper: #f5f0e7;
  --cream: #fbf8f1;
  --orange: #e4532e;
  --orange-dark: #bd3c1f;
  --sage: #97a68d;
  --electric-lime: #8cf02e;
  --electric-cyan: #52d9ef;
  --line: rgba(28,33,29,.16);
  --muted: #6c716a;
  --white: #fff;
  --shadow: 0 24px 65px rgba(31,25,17,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 145px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.site-header {
  min-height: 132px;
  padding: 12px clamp(22px, 5vw, 76px) 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(245,240,231,.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.brand-logo-link { flex: 0 0 auto; }
.brand-logo { display: block; width: 126px; height: auto; mix-blend-mode: multiply; }
.brand-mark { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--orange); color: white; font: italic 24px/1 "Instrument Serif", serif; }
.brand b { display: block; letter-spacing: .19em; font-size: 13px; }
.brand small { display: block; letter-spacing: .15em; font-size: 7px; color: var(--muted); margin-top: 2px; }
.header-cta { justify-self: end; }
.section-nav { grid-column: 1 / -1; display: flex; gap: 8px; overflow-x: auto; padding: 1px 0 3px; scrollbar-width: none; }
.section-nav::-webkit-scrollbar { display: none; }
.section-nav a { flex: 0 0 auto; color: var(--ink); text-decoration: none; border: 1px solid rgba(28,33,29,.22); border-radius: 999px; background: rgba(255,255,255,.7); padding: 9px 14px; font-size: 12px; line-height: 1; font-weight: 700; white-space: nowrap; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.section-nav a:hover, .section-nav a:focus-visible { color: white; background: var(--ink); border-color: var(--ink); transform: translateY(-1px); }

.button { border: 0; border-radius: 999px; padding: 13px 21px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-accent { background: var(--orange); color: white; box-shadow: 0 10px 25px rgba(228,83,46,.22); }
.button-accent:hover { background: var(--orange-dark); }
.full-width { width: 100%; }
.text-button { border: 0; padding: 0; background: none; font-weight: 700; cursor: pointer; text-decoration: underline; text-underline-offset: 5px; }
.text-button span { color: var(--orange); margin-left: 4px; }
.text-button.light { color: white; }
.text-button.center { display: block; margin: 18px auto 0; font-size: 12px; color: var(--muted); }

.hero {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  padding: clamp(50px, 8vw, 110px) clamp(22px, 5vw, 76px) 70px;
  overflow: hidden;
}
.hero-copy { align-self: center; position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: .17em; font-size: 11px; font-weight: 700; margin: 0 0 20px; color: var(--orange-dark); }
h1, h2, h3 { font-family: "Instrument Serif", serif; font-weight: 400; margin: 0; }
h1 { font-size: clamp(58px, 7.1vw, 108px); line-height: .9; letter-spacing: -.035em; max-width: 760px; }
h1 em { color: var(--orange); font-weight: 400; }
.hero-lede { max-width: 590px; font-size: clamp(16px, 1.45vw, 20px); line-height: 1.65; color: #4e544e; margin: 30px 0; }
.hero-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.proof-row { display: flex; gap: clamp(24px, 4vw, 58px); margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line); max-width: 650px; }
.proof-row span { display: grid; gap: 4px; }
.proof-row b { font-size: 13px; }
.proof-row small { color: var(--muted); font-size: 10px; }

.hero-gallery { position: relative; min-height: 620px; }
.hero-gallery::before { content: ""; position: absolute; width: 650px; height: 650px; border: 1px solid rgba(228,83,46,.2); border-radius: 50%; left: 7%; top: -8%; }
.hero-poster { position: absolute; display: block; width: min(44%, 330px); aspect-ratio: 2/3; object-fit: cover; box-shadow: var(--shadow); background-color: #ddd; }
.hero-poster:nth-child(1) { left: 18%; top: 2%; transform: rotate(-5deg); z-index: 2; }
.hero-poster:nth-child(2) { right: 2%; bottom: 1%; transform: rotate(7deg); }
.hero-caption { position: absolute; left: 0; bottom: 12%; background: var(--ink); color: white; padding: 18px 22px; width: 245px; z-index: 4; box-shadow: 0 14px 35px rgba(0,0,0,.24); }
.hero-caption span { display: block; color: #ef8b6f; font-size: 8px; letter-spacing: .2em; }
.hero-caption b { display: block; margin: 8px 0 4px; }
.hero-caption small { color: #c9cdc8; }

.local-section {
  padding: 105px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(420px,1.15fr);
  column-gap: clamp(45px, 8vw, 120px);
  row-gap: 34px;
  background: #123b3d;
  color: white;
  position: relative;
  overflow: hidden;
}
.local-section::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(244,193,112,.2); border-radius: 50%; left: -260px; bottom: -330px; }
.local-heading, .local-details, .local-custom-section { position: relative; z-index: 1; }
.local-heading { grid-column: 1 / -1; align-self: center; }
.local-heading .eyebrow, .local-business-callout .eyebrow, .local-custom-heading .eyebrow { color: #f4c170; }
.local-heading h2 { font-size: clamp(54px, 7vw, 98px); line-height: .86; letter-spacing: -.025em; }
.local-heading h2 em { color: #f4c170; font-weight: 400; }
.local-heading > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 0; color: #d3e1df; font-size: 17px; line-height: 1.7; }
.local-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 30px; }
.local-button { background: #f4c170; color: #16383a; }
.local-button:hover { background: #ffcf82; }
.local-section .text-button span { color: #f4c170; }
.local-details { align-self: center; }
.local-places { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.28); }
.local-places article { min-height: 132px; padding: 24px 22px; display: grid; grid-template-columns: 34px 1fr; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
.local-places article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
.local-places article > span { color: #f4c170; font: italic 22px/1 "Instrument Serif", serif; }
.local-places article div { display: grid; align-content: start; gap: 7px; }
.local-places b { font: 29px/1 "Instrument Serif", serif; }
.local-places small { color: #b8cdca; font-size: 14px; line-height: 1.5; }
.local-business-callout { margin-top: 28px; padding: 27px 30px; background: rgba(255,255,255,.08); border-left: 3px solid #f4c170; }
.local-business-callout .eyebrow { margin-bottom: 10px; }
.local-business-callout h3 { font-size: clamp(30px,3vw,42px); line-height: 1; }
.local-business-callout > p:not(.eyebrow) { margin: 14px 0 0; color: #d3e1df; font-size: 16px; line-height: 1.65; }
.local-reading-collection { grid-column: 1 / -1; position: relative; z-index: 1; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.24); }
.local-reading-intro { display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); gap: clamp(30px,6vw,90px); align-items: end; margin-bottom: 30px; }
.local-reading-intro .eyebrow { color: #f4c170; }
.local-reading-intro h3 { font-size: clamp(39px,4.5vw,64px); line-height: .96; }
.local-reading-intro > p { max-width: 720px; margin: 0; color: #d3e1df; font-size: 16px; line-height: 1.7; }
.local-reading-intro strong { color: white; }
.local-art-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(18px,3vw,34px); }
.local-art-card { color: white; }
.local-art-card .card-image { background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.12); }
.local-art-card .card-meta small { color: #f4c170; }
.local-art-card .card-meta h3 { color: white; font-size: 17px; }
.local-art-card .card-meta p { color: #d3e1df; line-height: 1.55; }
.card-format-note { display: block; margin-top: 8px; color: #f4c170; font-size: 10px; font-weight: 700; letter-spacing: .04em; }
.local-custom-section { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px,.72fr) minmax(420px,1.28fr); gap: clamp(45px,8vw,120px); margin-top: 22px; padding-top: 50px; border-top: 1px solid rgba(255,255,255,.24); }
.local-custom-heading { align-self: center; }
.local-custom-heading h3 { font-size: clamp(38px,4.2vw,60px); line-height: .98; }
.local-custom-heading > p:not(.eyebrow) { max-width: 540px; margin: 22px 0 0; color: #d3e1df; font-size: 16px; line-height: 1.7; }

.poster-visual { position: relative; overflow: hidden; background-size: cover; background-position: center; }
.poster-visual::before, .poster-visual::after { content: ""; position: absolute; pointer-events: none; }
.poster-visual::after { inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); }
.visual-florida { background: radial-gradient(circle at 67% 40%, #ffa429 0 7%, transparent 8%), linear-gradient(135deg, transparent 35%, rgba(19,53,37,.7) 36% 43%, transparent 44%), linear-gradient(160deg, #f9c863 0 48%, #ee612f 49% 68%, #2f6d51 69%); }
.visual-florida::before { width: 54%; height: 75%; right: -10%; bottom: -16%; border-radius: 50% 10% 0 0; background: #24382e; transform: rotate(-16deg); }
.visual-harlem { background: radial-gradient(circle at 72% 27%, #f4c75e 0 4%, transparent 5%), linear-gradient(121deg, transparent 0 32%, #10191f 33% 41%, transparent 42%), linear-gradient(145deg,#872c25,#e79f43 44%,#1b4c50 45% 70%,#171b20 71%); }
.visual-harlem::before { width: 62%; height: 7%; background: #e6ba4f; transform: rotate(-28deg); top: 48%; left: 15%; box-shadow: 0 13px 0 #1b1c1e, 0 26px 0 #d7d2bd; }
.visual-chicago { background: linear-gradient(165deg, transparent 0 45%, #efb53e 46% 52%, #263b42 53%), repeating-linear-gradient(90deg,#5e7f84 0 8%,#d9aa54 8% 10%,#243e47 10% 18%); }
.visual-miami { background: linear-gradient(160deg, transparent 0 59%, #ec5a54 60% 64%, #f2d995 65%), linear-gradient(90deg,#28aabd,#9ee1db 55%,#f7c3b0); }
.visual-nashville { background: linear-gradient(168deg,transparent 0 55%,#1f2834 56%), radial-gradient(circle at 70% 32%,#ffd65a 0 5%,transparent 6%), linear-gradient(120deg,#c44b35,#78346d 48%,#164c5e); }
.visual-sanfrancisco { background: linear-gradient(145deg,transparent 0 44%,#e34c36 45% 49%,transparent 50%), repeating-linear-gradient(90deg,transparent 0 8%,rgba(55,42,36,.8) 8% 10%), linear-gradient(#efb950,#6ba2a7 60%,#354c59); }
.visual-sicily { background: radial-gradient(circle at 75% 18%,#f8d87d 0 6%,transparent 7%), linear-gradient(150deg,transparent 0 42%,#362e31 43% 55%,#da4a22 56% 58%,#2c2726 59%), linear-gradient(#8dc9d4,#f2b168); }
.visual-santorini { background: radial-gradient(circle at 75% 20%,#ffd35b 0 7%,transparent 8%), linear-gradient(140deg,transparent 0 45%,white 46% 64%,#2f75a2 65% 70%,white 71%), linear-gradient(#72b8d2,#e7d39f); }
.visual-cancun { background: radial-gradient(circle at 50% 38%,#c83444 0 13%,#f6b638 14% 24%,transparent 25%), linear-gradient(170deg,transparent 0 62%,#0f7580 63%), linear-gradient(#72cce2,#f1d59a); }
.visual-aquarium { background: radial-gradient(ellipse at 30% 30%,#f2c957 0 4%,transparent 5%), radial-gradient(ellipse at 72% 55%,#ef715c 0 5%,transparent 6%), linear-gradient(#0a405e,#16a2a4 62%,#d9c46a); }
.visual-jazz { background: radial-gradient(circle at 25% 22%,#efca5b 0 5%,transparent 6%), linear-gradient(68deg,transparent 0 36%,#151723 37% 43%,transparent 44%), linear-gradient(145deg,#702640,#df6a36 52%,#253948); }
.visual-neworleans { background: repeating-linear-gradient(90deg,transparent 0 12%,rgba(25,38,39,.45) 12% 14%), linear-gradient(160deg,#f2bd3e,#b34f45 52%,#216466); }
.visual-cowboy { background: linear-gradient(40deg,transparent 0 42%,#1d211d 43% 55%,transparent 56%), radial-gradient(circle at 58% 22%,#cfa879 0 9%,transparent 10%), linear-gradient(#9b7257,#e1c09b); filter: sepia(.2); }
.visual-bicycle { background: radial-gradient(circle at 36% 66%,transparent 0 18%,#382f29 19% 21%,transparent 22%), radial-gradient(circle at 70% 66%,transparent 0 18%,#382f29 19% 21%,transparent 22%), linear-gradient(#aa8766,#e6d0aa); filter: sepia(.35); }
.visual-guss { background: radial-gradient(ellipse at 50% 42%,#a5d879 0 13%,transparent 14%), repeating-linear-gradient(90deg,transparent 0 18%,rgba(32,96,111,.7) 18% 22%), linear-gradient(#1f2730,#394751); }
.visual-hunting { background: radial-gradient(circle at 32% 52%,#8e653e 0 8%,transparent 9%), radial-gradient(circle at 67% 52%,#504d36 0 9%,transparent 10%), linear-gradient(#d9c49a,#6c7e45); }

.pet-portrait-section {
  padding: 110px clamp(22px, 5vw, 76px) 90px;
  background: #ede4d6;
  border-top: 1px solid rgba(28,33,29,.08);
  position: relative;
  overflow: hidden;
}
.pet-portrait-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(228,83,46,.18);
  border-radius: 50%;
  left: -290px;
  top: 140px;
}
.pet-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 46px; position: relative; }
.pet-section-heading h2 { font-size: clamp(48px, 6vw, 86px); line-height: .92; letter-spacing: -.025em; }
.pet-section-heading h2 em { color: var(--orange); font-weight: 400; }
.preview-badge { border: 1px solid rgba(28,33,29,.28); padding: 13px 16px; min-width: 235px; display: grid; gap: 4px; background: rgba(251,248,241,.6); }
.preview-badge span { font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-dark); }
.preview-badge small { font-size: 10px; color: var(--muted); }
.pet-order-layout { display: grid; grid-template-columns: minmax(0,1.06fr) minmax(390px,.94fr); gap: clamp(28px, 5vw, 72px); align-items: start; position: relative; }
.pet-showcase { min-width: 0; }
.pet-art-stage { min-height: 750px; display: grid; place-items: center; padding: clamp(24px,4vw,60px); background: #242722; position: relative; overflow: hidden; }
.pet-art-stage::before { content: "CUSTOM PORTRAIT · 01"; position: absolute; top: 22px; left: 24px; color: #e8a076; font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.pet-art-stage::after { content: ""; position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.11); pointer-events: none; }
.pet-art-stage img { display: block; width: min(76%, 560px); height: auto; position: relative; z-index: 2; box-shadow: 0 30px 70px rgba(0,0,0,.42); border: 7px solid #151714; outline: 2px solid #705b43; background: white; }
.pet-art-caption { display: grid; grid-template-columns: minmax(150px,.45fr) 1fr; gap: 28px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.pet-art-caption div { display: grid; gap: 4px; align-content: start; }
.pet-art-caption span { color: var(--orange-dark); text-transform: uppercase; font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.pet-art-caption b { font: 32px/1 "Instrument Serif", serif; }
.pet-art-caption p { margin: 0; color: #575d56; font-size: 14px; line-height: 1.7; }
.pet-wear-note { background: var(--orange); color: white; padding: 18px 21px; display: grid; grid-template-columns: minmax(145px,.45fr) 1fr; gap: 28px; align-items: center; }
.pet-wear-note span { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.pet-wear-note p { margin: 0; font-size: 14px; line-height: 1.55; }
.pet-example-gallery { margin-top: 28px; }
.pet-example-heading { display: grid; grid-template-columns: minmax(145px,.45fr) 1fr; gap: 28px; align-items: start; margin-bottom: 13px; }
.pet-example-heading span { color: var(--orange-dark); text-transform: uppercase; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.pet-example-heading p { margin: 0; color: #575d56; font-size: 13px; line-height: 1.55; }
.pet-example-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.pet-example-grid figure { margin: 0; background: var(--cream); box-shadow: 0 14px 36px rgba(31,25,17,.1); }
.pet-example-grid img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.pet-example-grid figcaption { padding: 13px 14px 15px; display: grid; gap: 4px; }
.pet-example-grid figcaption b { font: 23px/1 "Instrument Serif", serif; }
.pet-example-grid figcaption span { color: var(--muted); font-size: 11px; line-height: 1.4; }
.pet-custom-example { margin-top: 24px; background: #242722; color: white; box-shadow: 0 18px 45px rgba(31,25,17,.14); }
.pet-custom-example-image { position: relative; overflow: hidden; }
.pet-custom-example-image img { display: block; width: 100%; height: auto; aspect-ratio: 2 / 3; object-fit: cover; }
.pet-custom-example-image span { position: absolute; left: 18px; bottom: 18px; padding: 9px 11px; background: rgba(28,33,29,.9); color: #f5c9a9; text-transform: uppercase; font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.pet-custom-example-copy { padding: clamp(24px, 4vw, 38px); }
.pet-custom-example-copy .eyebrow { color: #e9a365; margin-bottom: 10px; }
.pet-custom-example-copy h3 { max-width: 520px; font-size: clamp(34px, 4vw, 49px); line-height: .98; }
.pet-custom-example-copy > p:not(.eyebrow) { max-width: 590px; margin: 17px 0 0; color: #d5d9d4; font-size: 14px; line-height: 1.7; }
.pet-custom-example-copy small { display: block; max-width: 590px; margin-top: 15px; color: #9fa7a0; font-size: 11px; line-height: 1.55; }
.pet-request-card { background: var(--cream); padding: clamp(25px,4vw,46px); box-shadow: 0 24px 65px rgba(31,25,17,.11); }
.pet-form-intro { display: grid; grid-template-columns: 43px 1fr; gap: 14px; align-items: start; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.pet-form-intro .eyebrow { margin-bottom: 8px; font-size: 9px; }
.pet-form-intro h3 { font-size: clamp(33px,3vw,45px); line-height: 1; }
.step-number { width: 43px; height: 43px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-items: center; font-size: 10px; font-weight: 800; letter-spacing: .07em; }
.pet-field { display: grid; gap: 8px; margin-top: 22px; font-size: 14px; font-weight: 800; }
.pet-field input, .pet-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; background: white; padding: 13px 14px; color: var(--ink); font-weight: 400; resize: vertical; }
.pet-field input:focus, .pet-field textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
.field-help { color: var(--muted); font-size: 12px; font-weight: 400; line-height: 1.5; }
.shipping-address-field[hidden] { display: none; }
.turnaround-note { margin-top: 16px; padding: 16px 17px; border-left: 3px solid var(--orange); background: #f1eadf; }
.turnaround-note b { display: block; margin-bottom: 5px; font-size: 13px; }
.turnaround-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.pet-fieldset { margin-top: 23px; }
.pet-fieldset legend { margin-bottom: 10px; font-size: 14px; }
.pet-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.pet-product-choice { border: 1px solid var(--line); background: white; padding: 14px 12px; min-height: 84px; position: relative; display: flex; align-items: center; cursor: pointer; }
.pet-product-choice:has(input:checked) { border: 2px solid var(--ink); padding: 13px 11px; background: #f4efe4; }
.pet-product-choice input { position: absolute; opacity: 0; pointer-events: none; }
.pet-product-choice span { display: grid; gap: 5px; }
.pet-product-choice b { font-size: 14px; }
.pet-product-choice small { color: var(--muted); font-size: 12px; line-height: 1.35; }
.pet-product-choice:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
.portrait-style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.portrait-style-choice { position: relative; min-height: 190px; border: 1px solid var(--line); background: white; padding: 17px; display: grid; align-content: start; gap: 10px; cursor: pointer; }
.portrait-style-choice:has(input:checked) { border: 2px solid var(--ink); padding: 16px; background: #f4efe4; }
.portrait-style-choice input { position: absolute; opacity: 0; pointer-events: none; }
.portrait-style-choice:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
.portrait-style-title { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.portrait-style-title b { font-size: 15px; line-height: 1.25; }
.portrait-style-title strong { flex: 0 0 auto; padding: 4px 7px; background: var(--ink); color: white; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.portrait-style-choice small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.portrait-style-features { color: var(--orange-dark); font-size: 11px; font-weight: 700; line-height: 1.5; }
.portrait-quote-note, .portrait-custom-note { margin: 10px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.portrait-detail-panel { margin-top: 18px; padding: 1px 16px 16px; border-left: 3px solid var(--orange); background: #f1eadf; }
.portrait-detail-panel[hidden] { display: none; }
.portrait-pose-options { margin-top: 0; }
.pet-size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pet-choice { position: relative; min-height: 92px; border: 1px solid var(--line); padding: 14px; display: grid; grid-template-columns: 1fr auto; align-content: space-between; gap: 10px; background: white; cursor: pointer; }
.pet-choice:has(input:checked) { border: 2px solid var(--ink); padding: 13px; background: #f4efe4; }
.pet-choice input { position: absolute; opacity: 0; pointer-events: none; }
.pet-choice span { display: grid; gap: 5px; }
.pet-choice b { font-size: 14px; }
.pet-choice small { color: var(--muted); font-size: 12px; font-weight: 400; }
.pet-choice strong { grid-column: 2; grid-row: 1 / 3; align-self: end; color: var(--orange-dark); font-size: 14px; }
.pet-choice:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
.pet-name-option { margin-top: 14px; border: 1px solid var(--line); background: #f1eadf; padding: 14px; display: flex; align-items: start; gap: 11px; cursor: pointer; }
.pet-name-option input { accent-color: var(--orange); margin-top: 2px; }
.pet-name-option span { display: grid; gap: 4px; }
.pet-name-option b { font-size: 14px; }
.pet-name-option small { color: var(--muted); font-size: 12px; line-height: 1.4; }
.shirt-options { border: 1px solid var(--line); background: #f1eadf; padding: 16px; }
.shirt-options[hidden] { display: none; }
.shirt-option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.shirt-option-grid label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }
.shirt-option-grid select { min-width: 0; width: 100%; border: 1px solid var(--line); background: white; color: var(--ink); padding: 11px 9px; border-radius: 0; font-size: 13px; }
.shirt-options > p { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.pet-upload { margin-top: 22px; border: 1px dashed rgba(28,33,29,.4); background: white; min-height: 100px; padding: 19px; display: flex; align-items: center; gap: 15px; cursor: pointer; }
.pet-upload:hover { border-color: var(--orange); }
.pet-upload:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
.pet-upload input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.upload-icon { width: 43px; height: 43px; border-radius: 50%; flex: 0 0 auto; display: grid; place-items: center; background: var(--orange); color: white; font-size: 23px; }
.pet-upload > span:last-of-type { display: grid; gap: 5px; }
.pet-upload b { font-size: 14px; }
.pet-upload small { color: var(--muted); font-size: 12px; line-height: 1.5; }
.file-status { margin: 7px 0 0; min-height: 17px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.fulfillment-fieldset { margin-bottom: 0; }
.fulfillment-options { display: flex; flex-wrap: wrap; gap: 8px; }
.fulfillment-options label { cursor: pointer; }
.fulfillment-options input { position: absolute; opacity: 0; }
.fulfillment-options span { display: block; padding: 9px 13px; border: 1px solid var(--line); border-radius: 99px; background: white; font-size: 13px; font-weight: 700; }
.fulfillment-options label:has(input:checked) span { background: var(--ink); color: white; border-color: var(--ink); }
.fulfillment-options label:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 99px; }
.pet-order-summary { margin: 24px 0 12px; padding: 14px 16px; background: var(--ink); color: white; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; }
.pet-order-summary span { color: #d2d7d2; font-size: 12px; }
.pet-order-summary b { text-align: right; font-size: 13px; }
.pet-copy-status { margin-bottom: 0; line-height: 1.45; white-space: pre-wrap; }
.pet-privacy { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.pet-privacy a, .inquiry-content a, footer a { color: inherit; font-weight: 700; text-underline-offset: 3px; }
.pet-process { margin-top: 56px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3,1fr); }
.pet-process article { padding: 25px clamp(14px,2.5vw,34px); display: grid; grid-template-columns: 37px 1fr; gap: 13px; }
.pet-process article + article { border-left: 1px solid var(--line); }
.pet-process article > span { width: 37px; height: 37px; border: 1px solid rgba(28,33,29,.3); border-radius: 50%; display: grid; place-items: center; font: italic 20px/1 "Instrument Serif", serif; color: var(--orange-dark); }
.pet-process b { font-size: 12px; }
.pet-process p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.ai-disclosure { max-width: 940px; margin: 25px auto 0; text-align: center; color: #5f655e; font-size: 10px; line-height: 1.65; }

.car-movie-section {
  padding: 110px clamp(22px, 5vw, 76px) 90px;
  background:
    radial-gradient(circle at 88% 14%, rgba(82,217,239,.12), transparent 29%),
    radial-gradient(circle at 7% 56%, rgba(140,240,46,.1), transparent 28%),
    #0e1518;
  color: white;
  position: relative;
  overflow: hidden;
}
.car-movie-section::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(82,217,239,.17);
  border-radius: 50%;
  right: -360px;
  top: 120px;
}
.car-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 45px; margin-bottom: 46px; position: relative; }
.car-section-heading .eyebrow { color: var(--electric-cyan); }
.car-section-heading h2 { font-size: clamp(48px, 6vw, 86px); line-height: .92; letter-spacing: -.025em; }
.car-section-heading h2 em { color: var(--electric-lime); font-weight: 400; }
.car-preview-badge { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.055); }
.car-preview-badge span { color: var(--electric-lime); }
.car-preview-badge small { color: #aebcc0; }
.car-order-layout { display: grid; grid-template-columns: minmax(0,1.06fr) minmax(390px,.94fr); gap: clamp(28px, 5vw, 72px); align-items: start; position: relative; }
.car-showcase { min-width: 0; }
.car-art-stage {
  min-height: 750px;
  display: grid;
  place-items: center;
  padding: clamp(42px,5vw,74px);
  background: radial-gradient(circle at 50% 45%, #253a42 0, #152228 43%, #070b0d 100%);
  position: relative;
  overflow: hidden;
}
.car-art-stage::before {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(82,217,239,.18);
  box-shadow: 0 0 60px rgba(82,217,239,.08);
}
.car-art-stage::after {
  content: "";
  position: absolute;
  width: 74%;
  height: 2px;
  bottom: 7%;
  background: linear-gradient(90deg, transparent, var(--electric-lime), var(--electric-cyan), transparent);
  box-shadow: 0 0 17px rgba(82,217,239,.55);
}
.car-art-stage img { display: block; width: min(70%, 520px); height: auto; position: relative; z-index: 2; box-shadow: 0 34px 80px rgba(0,0,0,.68), 0 0 35px rgba(82,217,239,.13); border: 8px solid #050708; outline: 1px solid #4e5e61; }
.car-stage-label { position: absolute; top: 22px; left: 24px; color: var(--electric-cyan); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.car-art-caption { display: grid; grid-template-columns: minmax(150px,.45fr) 1fr; gap: 28px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.car-art-caption div { display: grid; gap: 4px; align-content: start; }
.car-art-caption span { color: var(--electric-cyan); text-transform: uppercase; font-size: 8px; letter-spacing: .15em; font-weight: 800; }
.car-art-caption b { font: 32px/1 "Instrument Serif", serif; }
.car-art-caption p { margin: 0; color: #b1bec1; font-size: 14px; line-height: 1.7; }
.car-deliverables-note { background: var(--electric-lime); color: #101815; padding: 18px 21px; display: grid; grid-template-columns: minmax(145px,.45fr) 1fr; gap: 28px; align-items: center; }
.car-deliverables-note span { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.car-deliverables-note p { margin: 0; font-size: 14px; line-height: 1.55; }
.car-request-card { color: var(--ink); background: #f5f7f3; }
.car-request-card .step-number { background: var(--electric-lime); color: #101815; }
.car-request-card .eyebrow { color: #147a88; }
.car-request-card .pet-product-choice:has(input:checked),
.car-request-card .pet-choice:has(input:checked) { border-color: #162126; background: #e9f4e2; }
.optional-label { color: var(--muted); font-size: 11px; font-weight: 500; }
.car-upload:hover, .car-upload:focus-within { border-color: #147a88; background: #eef8f6; }
.car-order-summary { background: #111a1d; }
.car-button { background: var(--electric-lime); color: #111814; box-shadow: 0 10px 25px rgba(140,240,46,.22); }
.car-button:hover { background: #a2fb4d; }
.car-process { border-color: rgba(255,255,255,.18); }
.car-process article + article { border-color: rgba(255,255,255,.18); }
.car-process article > span { border-color: rgba(255,255,255,.32); color: var(--electric-lime); }
.car-process p { color: #9dacaf; }
.car-disclosure { color: #94a4a7; }

.movie-repro-section {
  padding: 110px clamp(22px, 5vw, 76px) 90px;
  background: #7f1d22;
  color: #fff8ec;
  position: relative;
  overflow: hidden;
}
.movie-repro-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(246,197,97,.24);
  border-radius: 50%;
  left: -330px;
  top: 210px;
}
.movie-repro-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(35px,7vw,100px); align-items: end; margin-bottom: 47px; position: relative; }
.movie-repro-heading .eyebrow { color: #f6c561; }
.movie-repro-heading h2 { font-size: clamp(48px,6vw,86px); line-height: .92; letter-spacing: -.025em; }
.movie-repro-heading h2 em { color: #f6c561; font-weight: 400; }
.movie-repro-heading > p { color: #ebd8ca; line-height: 1.75; margin: 0 0 6px; max-width: 560px; }
.movie-repro-layout { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(390px,.98fr); gap: clamp(28px,5vw,72px); align-items: start; position: relative; }
.movie-repro-showcase { min-width: 0; }
.movie-request-poster {
  min-height: 700px;
  padding: clamp(70px,8vw,110px) clamp(28px,5vw,72px);
  background:
    radial-gradient(circle at 50% 43%, rgba(255,199,83,.27), transparent 33%),
    linear-gradient(145deg, #19130f, #2f1b15 55%, #100d0b);
  border: 12px solid #1b120d;
  outline: 1px solid rgba(246,197,97,.55);
  box-shadow: 0 35px 80px rgba(42,7,9,.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.movie-request-poster::before,
.movie-request-poster::after { content: ""; position: absolute; width: 235px; height: 235px; border: 1px solid rgba(246,197,97,.24); border-radius: 50%; }
.movie-request-poster::before { left: -95px; top: 20%; }
.movie-request-poster::after { right: -105px; bottom: 14%; }
.movie-request-poster p { color: #f6c561; font-size: 10px; letter-spacing: .25em; font-weight: 800; margin: 0 0 45px; }
.movie-request-poster strong { font: 400 clamp(54px,6vw,88px)/.82 "Instrument Serif", serif; letter-spacing: -.035em; position: relative; z-index: 2; }
.movie-request-poster > span { margin-top: 45px; color: #f6c561; letter-spacing: .17em; font-size: 11px; font-weight: 800; }
.movie-request-poster small { margin-top: 10px; color: #c9b6a7; letter-spacing: .1em; font-size: 8px; }
.film-perforations { position: absolute; left: 0; right: 0; height: 20px; background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(246,197,97,.68) 18px 31px, transparent 31px 43px); }
.film-perforations-top { top: 23px; }
.film-perforations-bottom { bottom: 23px; }
.movie-eligibility-note { background: #f6c561; color: #261611; padding: 19px 22px; display: grid; grid-template-columns: minmax(135px,.38fr) 1fr; gap: 24px; align-items: center; }
.movie-eligibility-note span { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; }
.movie-eligibility-note p { margin: 0; font-size: 13px; line-height: 1.6; }
.movie-repro-card { color: var(--ink); background: #fff9ee; }
.movie-repro-card .step-number { background: #7f1d22; }
.movie-repro-card .eyebrow { color: #9a272b; }
.movie-repro-card .pet-choice:has(input:checked) { border-color: #7f1d22; background: #f8e8d7; }
.movie-size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.movie-size-other { grid-column: 1 / -1; min-height: 76px; }
.movie-rights-check { margin-top: 22px; border: 1px solid #d2af7c; background: #f6ead5; padding: 15px; display: flex; align-items: start; gap: 11px; cursor: pointer; }
.movie-rights-check input { accent-color: #7f1d22; margin-top: 2px; }
.movie-rights-check span { display: grid; gap: 5px; }
.movie-rights-check b { font-size: 13px; }
.movie-rights-check small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.movie-rights-check:focus-within { outline: 2px solid #b73438; outline-offset: 2px; }
.movie-repro-summary { background: #251714; }
.movie-repro-button { background: #7f1d22; color: white; box-shadow: 0 10px 25px rgba(127,29,34,.2); }
.movie-repro-button:hover { background: #a52b31; }
.movie-repro-process { margin-top: 56px; border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); display: grid; grid-template-columns: repeat(3,1fr); }
.movie-repro-process article { padding: 25px clamp(14px,2.5vw,34px); display: grid; grid-template-columns: 37px 1fr; gap: 13px; }
.movie-repro-process article + article { border-left: 1px solid rgba(255,255,255,.25); }
.movie-repro-process article > span { width: 37px; height: 37px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; font: italic 20px/1 "Instrument Serif", serif; color: #f6c561; }
.movie-repro-process b { font-size: 12px; }
.movie-repro-process p { margin: 6px 0 0; color: #dec9bc; font-size: 10px; line-height: 1.55; }

.ordering-section {
  padding: 110px clamp(22px, 5vw, 76px);
  background: #f7f2e9;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.ordering-intro { position: sticky; top: 130px; }
.ordering-intro h2 { font-size: clamp(48px, 5.5vw, 78px); line-height: .94; letter-spacing: -.025em; }
.ordering-intro h2 em { color: var(--orange); font-weight: 400; }
.ordering-intro > p:not(.eyebrow) { margin: 27px 0; max-width: 510px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.email-only-note { border-left: 4px solid var(--orange); padding: 15px 18px; background: white; box-shadow: 0 12px 35px rgba(42,34,25,.08); display: grid; gap: 5px; }
.email-only-note b { font-size: 15px; }
.email-only-note span { color: var(--muted); font-size: 14px; line-height: 1.55; }
.ordering-steps { border-top: 1px solid var(--line); }
.ordering-steps article { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.ordering-steps article > span { color: var(--orange-dark); font: italic 27px/1 "Instrument Serif", serif; }
.ordering-steps h3 { font-size: 29px; line-height: 1.05; }
.ordering-steps p { margin: 9px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.order-policies { grid-column: 1 / -1; margin-top: 30px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policies-heading { grid-column: 1 / -1; padding: 31px 0 27px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; align-items: end; }
.policies-heading .eyebrow { margin: 0; }
.policies-heading h2 { font-size: clamp(35px, 4vw, 55px); line-height: 1; }
.order-policies article { padding: 23px 20px 28px; border-top: 1px solid var(--line); }
.order-policies article + article { border-left: 1px solid var(--line); }
.order-policies article b { font-size: 14px; }
.order-policies article p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.collection-section { padding: 105px clamp(22px, 5vw, 76px); background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 38px; }
.section-heading h2, .guide-intro h2 { font-size: clamp(43px, 5vw, 74px); line-height: 1; letter-spacing: -.02em; }
.section-heading > p { max-width: 480px; line-height: 1.7; color: var(--muted); margin: 0 0 7px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px 0 32px; border-top: 1px solid var(--line); }
.filter-chip { border: 1px solid var(--line); border-radius: 99px; background: transparent; padding: 10px 16px; cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-chip:hover, .filter-chip.active { color: white; background: var(--ink); border-color: var(--ink); }
.art-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 22px; }
.art-card { background: none; border: 0; padding: 0; text-align: left; cursor: pointer; display: block; min-width: 0; }
.art-card[hidden] { display: none; }
.card-image { aspect-ratio: 4/5; background: #e4ddd1; padding: 9%; position: relative; overflow: hidden; transition: transform .35s; }
.art-card:hover .card-image { transform: translateY(-4px); }
.card-image .poster-visual { width: 100%; height: 100%; box-shadow: 0 17px 34px rgba(25,22,17,.22); }
.card-image .art-thumb { display: block; width: 100%; height: 100%; object-fit: contain; background: white; box-shadow: 0 17px 34px rgba(25,22,17,.22); }
.quick-view { position: absolute; left: 50%; bottom: 18px; transform: translate(-50%,10px); opacity: 0; background: rgba(255,255,255,.95); padding: 9px 14px; border-radius: 99px; font-size: 10px; font-weight: 700; white-space: nowrap; transition: .25s; }
.art-card:hover .quick-view, .art-card:focus-visible .quick-view { opacity: 1; transform: translate(-50%,0); }
.card-meta { padding-top: 14px; }
.card-meta small { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; font-size: 8px; }
.card-meta h3 { font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 700; margin: 6px 0; }
.card-meta p { color: var(--muted); font-size: 11px; margin: 0; }
.catalog-note { text-align: center; color: var(--muted); font-size: 11px; max-width: 700px; margin: 42px auto 0; }

.antique-section {
  padding: 110px clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 120px);
  background: #242722;
  color: white;
}
.antique-intro { align-self: center; }
.antique-intro .eyebrow { color: #e9a365; }
.antique-intro h2 { font-size: clamp(55px, 7vw, 98px); line-height: .86; letter-spacing: -.025em; }
.antique-intro h2 em { color: #e9a365; font-weight: 400; }
.antique-intro > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: #c8cec7; line-height: 1.75; }
.antique-intro > small { display: block; max-width: 470px; margin-top: 18px; color: #959d96; font-size: 11px; line-height: 1.6; }
.antique-ledger { border-top: 1px solid rgba(255,255,255,.3); align-self: center; }
.ledger-heading { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; color: #e9a365; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.antique-ledger article { display: grid; grid-template-columns: 54px 1fr; gap: 14px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.16); }
.ledger-number { color: #e9a365; font: italic 28px/1 "Instrument Serif", serif; }
.antique-ledger h3 { font-size: clamp(27px, 3vw, 40px); line-height: 1; }
.antique-ledger article p { margin: 9px 0 0; color: #aeb5ae; font-size: 13px; line-height: 1.55; }
.ledger-note { margin: 0; padding: 18px 0 0 68px; border-top: 1px solid rgba(255,255,255,.16); color: #8f9790; font-size: 11px; line-height: 1.55; }

.print-guide { padding: 110px clamp(22px, 5vw, 76px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; background: #d9dfd3; position: relative; }
.guide-intro { align-self: center; }
.guide-intro > p:not(.eyebrow) { line-height: 1.7; color: #525a52; margin: 24px 0; max-width: 470px; }
.finish-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.finish-card { background: var(--cream); padding: 18px 18px 30px; }
.finish-card h3 { font-size: 31px; margin-bottom: 10px; }
.finish-card > p:last-child { line-height: 1.6; color: var(--muted); font-size: 13px; }
.paper-swatch { height: 205px; margin-bottom: 26px; overflow: hidden; position: relative; }
.paper-swatch span { display: block; width: 58%; height: 145%; position: absolute; left: 24%; top: -20%; transform: rotate(18deg); background: #f5c46c; }
.satin-card .paper-swatch { background: linear-gradient(120deg,#81472f,#df8b46 45%,#f6d899 47%,#8c492e 54%,#2f3330); }
.matte-card .paper-swatch { background: linear-gradient(120deg,#708276,#b9b29c 45%,#d8d1bc 47%,#7e8175 54%,#475249); }
.matte-card .paper-swatch span { opacity: .34; }
.large-format-note { grid-column: 1/-1; background: var(--ink); color: white; display: flex; align-items: center; gap: 22px; padding: 22px 28px; }
.large-format-note .ruler-mark { font: 42px/1 "Instrument Serif", serif; color: #f08d70; padding-right: 22px; border-right: 1px solid #536059; }
.large-format-note b { font-family: "Instrument Serif", serif; font-size: 23px; font-weight: 400; }
.large-format-note p { display: inline; color: #b8c0b9; margin-left: 10px; font-size: 13px; }

footer { background: var(--ink); color: white; min-height: 150px; padding: 42px clamp(22px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
footer p { color: #9da69f; font-size: 11px; }
.footer-brand small { color: #9da69f; }

dialog { border: 0; padding: 0; box-shadow: 0 28px 100px rgba(0,0,0,.35); }
dialog::backdrop { background: rgba(18,23,20,.65); backdrop-filter: blur(7px); }
.product-dialog { width: min(1100px, 94vw); max-height: 92vh; background: var(--cream); overflow: auto; }
.dialog-close { position: absolute; right: 16px; top: 12px; border: 0; background: rgba(255,255,255,.85); width: 35px; height: 35px; border-radius: 50%; font-size: 25px; z-index: 10; cursor: pointer; }
.product-layout { display: grid; grid-template-columns: 1.08fr .92fr; }
.product-preview-wrap { background: #d8d4cb; padding: 25px; min-height: 670px; display: flex; flex-direction: column; }
.room-preview { flex: 1; display: grid; place-items: center; position: relative; transition: background .3s; }
.room-preview.hero-source-view { background: transparent; box-shadow: none; }
.preview-art { width: 47%; aspect-ratio: 2/3; box-shadow: 0 20px 34px rgba(28,22,17,.28); z-index: 2; transition: width .3s, box-shadow .3s, border .3s; }
.preview-art.image-preview { width: min(96%, 590px); aspect-ratio: auto; background: transparent; overflow: hidden; box-shadow: none; }
.preview-art.image-preview img { display: block; width: 100%; height: auto; max-height: 590px; object-fit: contain; }
.preview-switcher { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.preview-switcher[hidden] { display: none; }
.preview-switch { border: 1px solid rgba(28,33,29,.22); border-radius: 99px; background: rgba(255,255,255,.72); color: var(--ink); padding: 9px 13px; font-size: 11px; font-weight: 700; cursor: pointer; }
.preview-switch:hover, .preview-switch.active { background: var(--ink); border-color: var(--ink); color: white; }
.preview-switch:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.preview-label { display: flex; justify-content: center; align-items: baseline; flex-wrap: wrap; gap: 7px 10px; text-align: center; color: var(--muted); font-size: 12px; margin: 16px 0 0; }
.preview-label strong { color: var(--orange-dark); font-size: 13px; letter-spacing: .08em; }
.product-details { padding: 70px 48px 45px; }
.product-details h2 { font-size: 47px; line-height: 1; }
.product-details > p:not(.eyebrow) { line-height: 1.65; color: var(--muted); font-size: 13px; }
fieldset { border: 0; padding: 0; margin: 28px 0 0; }
legend { font-weight: 700; font-size: 12px; margin-bottom: 10px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.choice-button { border: 1px solid var(--line); background: white; padding: 12px; cursor: pointer; text-align: left; }
.choice-button small { display: block; color: var(--muted); margin-top: 3px; font-size: 9px; }
.choice-button.active { border: 2px solid var(--ink); padding: 11px; background: #f4efe4; }
.choice-button:disabled { opacity: .42; cursor: not-allowed; }
.selection-summary { margin: 24px 0 13px; padding: 12px 14px; background: #ebe6dc; display: flex; justify-content: space-between; gap: 10px; font-size: 11px; }
.selection-summary span { color: var(--muted); }

.inquiry-dialog { width: min(560px, 92vw); background: var(--cream); max-height: 92vh; overflow: auto; }
.inquiry-content { padding: 52px; }
.inquiry-content h2 { font-size: 50px; }
.inquiry-content > p:not(.eyebrow):not(.copy-status) { color: var(--muted); line-height: 1.6; font-size: 13px; }
.inquiry-content label { display: block; font-weight: 700; font-size: 11px; margin-top: 18px; }
.inquiry-content input, .inquiry-content select, .inquiry-content textarea { width: 100%; border: 1px solid var(--line); background: white; padding: 12px; margin-top: 7px; color: var(--ink); border-radius: 0; }
.inquiry-content label .field-help { display: block; margin-top: 7px; }
.inquiry-turnaround-note { margin-top: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inquiry-content .button { margin-top: 18px; }
.copy-status { min-height: 18px; text-align: center; color: var(--orange-dark); font-size: 11px; font-weight: 700; }
.toast { position: fixed; right: 22px; bottom: 22px; padding: 12px 17px; border-radius: 8px; background: var(--ink); color: white; z-index: 100; font-size: 12px; opacity: 0; transform: translateY(10px); pointer-events: none; transition: .2s; }
.toast.show { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  nav { gap: 14px; }
  nav a { font-size: 11px; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-gallery { margin-top: 40px; min-height: 520px; }
  .hero-poster { width: 38%; }
  .local-section { grid-template-columns: 1fr; }
  .local-reading-intro { grid-template-columns: 1fr; }
  .local-custom-section { grid-template-columns: 1fr; }
  .pet-order-layout { grid-template-columns: 1fr; }
  .pet-art-stage { min-height: 690px; }
  .pet-art-stage img { width: min(72%, 520px); }
  .car-order-layout { grid-template-columns: 1fr; }
  .car-art-stage { min-height: 690px; }
  .car-art-stage img { width: min(68%, 500px); }
  .movie-repro-heading { grid-template-columns: 1fr; }
  .movie-repro-layout { grid-template-columns: 1fr; }
  .movie-request-poster { min-height: 620px; }
  .ordering-section { grid-template-columns: 1fr; }
  .ordering-intro { position: static; }
  .order-policies { grid-template-columns: repeat(2, 1fr); }
  .order-policies article + article { border-left: 0; }
  .order-policies article:nth-of-type(even) { border-left: 1px solid var(--line); }
  .art-grid { grid-template-columns: repeat(3, 1fr); }
  .antique-section { grid-template-columns: 1fr; }
  .print-guide { grid-template-columns: 1fr; }
  .large-format-note { grid-column: auto; }
  .product-layout { grid-template-columns: 1fr; }
  .product-preview-wrap { min-height: 520px; }
}

@media (max-width: 680px) {
  section[id] { scroll-margin-top: 126px; }
  .site-header { min-height: 116px; padding-top: 9px; padding-bottom: 8px; gap: 7px 12px; }
  .brand-logo { width: 100px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-cta { font-size: 11px; padding: 11px 15px; }
  .section-nav { margin-right: -22px; padding-right: 22px; }
  .section-nav a { padding: 8px 12px; font-size: 11px; }
  .hero { padding-top: 55px; }
  h1 { font-size: 57px; }
  .proof-row { gap: 18px; justify-content: space-between; }
  .proof-row small { max-width: 75px; }
  .hero-gallery { min-height: 420px; }
  .hero-gallery::before { width: 390px; height: 390px; left: -3%; }
  .hero-poster { width: 48%; }
  .hero-poster:nth-child(1) { left: 8%; }
  .hero-poster:nth-child(2) { right: 3%; }
  .hero-caption { left: 0; bottom: 2%; width: 205px; }
  .local-section, .pet-portrait-section, .car-movie-section, .movie-repro-section, .ordering-section, .collection-section, .print-guide { padding-top: 75px; padding-bottom: 75px; }
  .local-places { grid-template-columns: 1fr; }
  .local-places article:nth-child(odd) { border-right: 0; }
  .local-art-grid { grid-template-columns: 1fr; gap: 34px; }
  .pet-section-heading { display: block; }
  .car-section-heading { display: block; }
  .preview-badge { width: fit-content; margin-top: 24px; }
  .pet-art-stage { min-height: 520px; padding: 50px 22px 28px; }
  .pet-art-stage img { width: min(82%, 390px); border-width: 5px; }
  .pet-art-caption { grid-template-columns: 1fr; gap: 12px; }
  .pet-wear-note { grid-template-columns: 1fr; gap: 7px; }
  .pet-example-heading { grid-template-columns: 1fr; gap: 7px; }
  .pet-example-grid { grid-template-columns: 1fr; }
  .pet-product-grid, .shirt-option-grid, .portrait-style-grid { grid-template-columns: 1fr; }
  .pet-product-choice { min-height: 68px; }
  .pet-size-grid { grid-template-columns: 1fr; }
  .pet-process { grid-template-columns: 1fr; }
  .pet-process article + article { border-left: 0; border-top: 1px solid var(--line); }
  .car-art-stage { min-height: 560px; padding: 54px 22px 34px; }
  .car-art-stage img { width: min(75%, 390px); border-width: 5px; }
  .car-art-caption { grid-template-columns: 1fr; gap: 12px; }
  .car-deliverables-note { grid-template-columns: 1fr; gap: 7px; }
  .car-process article + article { border-top-color: rgba(255,255,255,.18); }
  .movie-request-poster { min-height: 500px; padding-left: 20px; padding-right: 20px; }
  .movie-request-poster strong { font-size: 51px; }
  .movie-eligibility-note { grid-template-columns: 1fr; gap: 7px; }
  .movie-size-grid { grid-template-columns: 1fr; }
  .movie-size-other { grid-column: auto; }
  .movie-repro-process { grid-template-columns: 1fr; }
  .movie-repro-process article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .ordering-steps article { grid-template-columns: 47px 1fr; gap: 13px; }
  .ordering-steps h3 { font-size: 26px; }
  .order-policies { grid-template-columns: 1fr; }
  .policies-heading { grid-template-columns: 1fr; gap: 8px; }
  .order-policies article:nth-of-type(even) { border-left: 0; }
  .antique-section { padding-top: 78px; padding-bottom: 78px; }
  .antique-intro h2 { font-size: 62px; }
  .ledger-heading { align-items: flex-start; }
  .ledger-heading span:last-child { max-width: 130px; text-align: right; }
  .antique-ledger article { grid-template-columns: 42px 1fr; }
  .ledger-note { padding-left: 56px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .filter-row { flex-wrap: nowrap; overflow-x: auto; margin-right: -22px; padding-right: 22px; scrollbar-width: none; }
  .filter-chip { white-space: nowrap; }
  .art-grid { grid-template-columns: repeat(2, 1fr); gap: 27px 12px; }
  .card-image { padding: 7%; }
  .finish-comparison { grid-template-columns: 1fr; }
  .paper-swatch { height: 150px; }
  .large-format-note { align-items: flex-start; }
  .large-format-note p { display: block; margin: 5px 0 0; line-height: 1.5; }
  footer { flex-direction: column; align-items: flex-start; }
  .product-preview-wrap { min-height: 440px; padding: 16px; }
  .product-details, .inquiry-content { padding: 45px 24px 28px; }
  .product-details h2, .inquiry-content h2 { font-size: 39px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

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