:root {
  --paper: #fbf9f5;
  --paper-deep: #f2ede4;
  --white: #fffefa;
  --ink: #273129;
  --muted: #596159;
  --moss: #566b54;
  --moss-dark: #344437;
  --clay: #8e4f38;
  --rose: #b86f82;
  --lavender: #82779c;
  --marigold: #dca43b;
  --line: rgba(39, 49, 41, .18);
  --shadow: 0 20px 55px rgba(39, 49, 41, .11);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 1rem/1.65 var(--sans);
}
body.drawer-open { overflow: hidden; }
img { display: block; max-width: 100%; }
.art-watermarked img {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
a { color: inherit; }
button, select { font: inherit; }
button, a, select, summary { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; }

.notice {
  background: var(--moss-dark);
  color: #fff;
  text-align: center;
  padding: .48rem 1rem;
  font-size: .76rem;
  letter-spacing: .055em;
}
.notice p { margin: 0; }
.header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem max(1.25rem, calc((100vw - var(--max)) / 2));
  background: rgba(250, 247, 242, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--moss);
  border-radius: 50% 44% 52% 46%;
  color: var(--moss);
  font: italic 1.35rem var(--serif);
}
.brand strong, .brand small { display: block; }
.brand strong { font: 600 1rem var(--serif); }
.brand small {
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.header nav { display: flex; justify-content: center; gap: clamp(1rem, 3vw, 2.5rem); }
.header nav a, .footer nav a { font-size: .86rem; text-decoration: none; }
.header nav a { white-space: nowrap; }
.header nav a:hover, .footer nav a:hover, .text-link:hover {
  text-decoration: underline;
  text-underline-offset: .32em;
}
.cart-open-button {
  display: flex;
  align-items: center;
  gap: .55rem;
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}
.cart-open-button b {
  display: grid;
  place-items: center;
  min-width: 1.7rem;
  height: 1.7rem;
  padding: 0 .38rem;
  border-radius: 999px;
  background: var(--moss);
  color: #fff;
  font-size: .75rem;
}

.hero, .section, .trust, .source-note, .footer {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  min-height: 680px;
  padding: 3.75rem 0 4.5rem;
}
.hero-copy { padding-top: 1rem; }
.eyebrow {
  margin: 0 0 .85rem;
  color: var(--clay);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1, .section h2, .source-note h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.038em;
}
.hero h1 {
  max-width: 750px;
  margin: .2rem 0 1.5rem;
  font-size: clamp(3.4rem, 5.65vw, 5.35rem);
}
.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}
.actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 2.1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .75rem 1.25rem;
  border: 1px solid var(--moss-dark);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
}
.primary { background: var(--moss-dark); color: #fff; }
.primary:hover { background: var(--moss); }
.text-link { font-weight: 750; text-underline-offset: .3em; }
.instagram-note {
  display: inline-block;
  margin-top: 2.3rem;
  color: var(--muted);
  font-size: .78rem;
  text-decoration: none;
}
.instagram-note:hover { color: var(--ink); }
.draft-note { margin-top: 1.2rem; color: var(--muted); font-size: .74rem; }

.hero-gallery {
  position: relative;
  min-height: 560px;
}
.hero-gallery figure { margin: 0; overflow: hidden; background: var(--paper-deep); box-shadow: var(--shadow); }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; }
.hero-main {
  position: absolute;
  inset: 0 14% 2% 4%;
  border: 10px solid var(--white);
  transform: rotate(-1.8deg);
}
.hero-small {
  position: absolute;
  right: -2%;
  width: 34%;
  aspect-ratio: 4 / 5;
  border: 7px solid var(--white);
}
.hero-small-top { top: 5%; transform: rotate(4deg); }
.hero-small-bottom { bottom: 4%; transform: rotate(-3deg); }
.hero-caption {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -1rem;
  padding: .55rem .8rem;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 8px 22px rgba(39, 49, 41, .1);
  font: italic 1rem var(--serif);
}

.art-watermarked { position: relative; }
.hero-main.art-watermarked,
.hero-small.art-watermarked { position: absolute; }
.art-watermark {
  position: absolute;
  z-index: 3;
  left: .8rem;
  bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .48rem;
  max-width: calc(100% - 1.6rem);
  padding: .38rem .58rem;
  border: 1px solid rgba(52, 68, 55, .25);
  border-radius: 999px;
  background: rgba(250, 247, 242, .82);
  color: rgba(39, 49, 41, .82);
  box-shadow: 0 5px 18px rgba(39, 49, 41, .1);
  backdrop-filter: blur(3px);
  pointer-events: none;
  user-select: none;
}
.art-watermark > i {
  display: grid;
  place-items: center;
  flex: 0 0 1.9rem;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid currentColor;
  border-radius: 50% 44% 52% 46%;
  font: italic 1rem var(--serif);
}
.art-watermark > span { display: grid; min-width: 0; line-height: 1.05; text-align: left; }
.art-watermark b { font: 600 .72rem var(--serif); white-space: nowrap; }
.art-watermark small { margin-top: .18rem; font-size: .45rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.hero-main .art-watermark {
  top: .8rem;
  right: auto;
  bottom: auto;
  left: .8rem;
}
.hero-small .art-watermark { top: .35rem; bottom: auto; left: .35rem; gap: 0; padding: .22rem; }
.hero-small .art-watermark > i { flex-basis: 1.55rem; width: 1.55rem; height: 1.55rem; font-size: .82rem; }
.hero-small .art-watermark > span { display: none; }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.trust > div { display: flex; align-items: center; gap: 1rem; padding: 1.35rem; }
.trust > div + div { border-left: 1px solid var(--line); }
.trust b { color: var(--clay); font: 400 1.7rem var(--serif); }
.trust p, .trust strong, .trust span { display: block; margin: 0; }
.trust p { font-size: .84rem; }
.trust span { color: var(--muted); }

.section { padding: 7rem 0; }
section[id], footer[id] { scroll-margin-top: 1rem; }
.section-head { max-width: 770px; margin-bottom: 3rem; }
.section-head h2, .source-note h2 {
  margin: .25rem 0 1rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.section-head > p:last-child { color: var(--muted); }
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: none;
  gap: 2rem;
}
.catalog-head > div:first-child { max-width: 720px; }
.filter { display: grid; gap: .45rem; min-width: 195px; }
.filter label { font-size: .75rem; font-weight: 750; }
.filter select {
  width: 100%;
  min-height: 2.85rem;
  padding: .55rem 2.1rem .55rem .85rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.catalog-status { margin: -1.75rem 0 1.5rem; color: var(--muted); font-size: .84rem; }
.photo-plan {
  max-width: 760px;
  margin: -1rem 0 2rem;
  padding: .9rem 1rem;
  border-left: 2px solid var(--clay);
  background: rgba(255, 253, 248, .58);
  color: var(--muted);
  font-size: .79rem;
}
.photo-plan strong { color: var(--ink); }
.photo-plan a { text-underline-offset: .25em; }
.commission-card {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  margin: 0 0 4.5rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  border: 1px solid rgba(130, 119, 156, .32);
  background: linear-gradient(135deg, rgba(255, 253, 248, .92), rgba(238, 232, 221, .66));
  box-shadow: 0 18px 50px rgba(39, 49, 41, .08);
}
.commission-visual { min-height: 430px; overflow: hidden; background: var(--white); }
.commission-visual > img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.premium-badge {
  position: absolute;
  z-index: 4;
  top: .8rem;
  left: .8rem;
  padding: .36rem .62rem;
  border-radius: 999px;
  background: #655879;
  color: #fffefa;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.commission-copy h3 { max-width: 720px; margin: .15rem 0 1.2rem; font: 400 clamp(2.3rem, 4.3vw, 4.7rem)/1.04 var(--serif); letter-spacing: -.035em; }
.commission-copy > p:not(.eyebrow):not(.commission-price) { max-width: 680px; color: var(--muted); }
.commission-copy ol { display: grid; gap: .75rem; list-style: none; margin: 1.6rem 0; padding: 0; }
.commission-copy li { display: grid; grid-template-columns: 2rem 1fr; gap: .75rem; align-items: start; }
.commission-copy li b { display: grid; place-items: center; width: 1.8rem; height: 1.8rem; border: 1px solid var(--lavender); border-radius: 50%; color: var(--lavender); font-size: .75rem; }
.commission-price { display: grid; gap: .1rem; margin: 1.6rem 0; }
.commission-price strong { font: 400 1.6rem var(--serif); }
.commission-price span { color: var(--muted); font-size: .76rem; }
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.7rem 1.25rem;
}
.skeleton {
  aspect-ratio: 4 / 5;
  background: linear-gradient(100deg, var(--paper-deep) 20%, var(--white) 50%, var(--paper-deep) 80%);
  background-size: 220% 100%;
  animation: pulse 1.6s infinite;
}
.product { min-width: 0; }
.product-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  opacity: 0;
  transition: opacity .25s, transform .45s;
}
.product-media img.loaded { opacity: 1; }
.product-media:hover img { transform: scale(1.025); }
.product-media .art-watermark {
  left: .55rem;
  bottom: .55rem;
  gap: .38rem;
  padding: .24rem .42rem .24rem .28rem;
}
.product-media .art-watermark > i {
  flex-basis: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  font-size: .84rem;
}
.product-media .art-watermark > span { display: grid; }
.media-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--paper-deep);
  color: var(--muted);
  text-align: center;
  font: italic 1rem var(--serif);
}
.product-status {
  position: absolute;
  z-index: 2;
  top: .7rem;
  left: .7rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-copy { padding-top: 1rem; }
.product-copy h3 { margin: 0; font: 400 1.28rem var(--serif); }
.product-meta {
  display: grid;
  gap: .08rem;
  margin: .32rem 0 .75rem;
  color: var(--muted);
  font-size: .79rem;
}
.product-meta strong { color: var(--ink); font-size: .84rem; }
.product-description {
  display: -webkit-box;
  min-height: 3.1em;
  margin: 0 0 .85rem;
  overflow: hidden;
  color: var(--muted);
  font-size: .8rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-actions { display: grid; grid-template-columns: auto 1fr; gap: .55rem; }
.product-view, .product-action {
  min-height: 2.65rem;
  padding: .55rem .8rem;
  border: 1px solid var(--moss);
  border-radius: 999px;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}
.product-view { border-color: var(--line); }
.product-view:hover { border-color: var(--moss); }
.product-action:hover { background: var(--moss); color: #fff; }
.product-action:disabled {
  border-color: var(--line);
  background: var(--paper-deep);
  color: var(--muted);
  cursor: not-allowed;
}

.quote-band {
  width: 100%;
  margin: 0;
  padding: 5rem max(1.25rem, calc((100vw - 900px) / 2));
  background: #ddd4bc;
  color: var(--moss-dark);
  text-align: center;
}
.quote-band p {
  max-width: 900px;
  margin: 0 auto .8rem;
  font: italic clamp(2rem, 4.5vw, 4.4rem)/1.12 var(--serif);
  letter-spacing: -.025em;
}
.quote-band span { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.story { border-top: 1px solid var(--line); }
.story-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(3rem, 9vw, 9rem);
}
.story-lede { margin-top: 0; font: 400 clamp(1.45rem, 2.5vw, 2.15rem)/1.38 var(--serif); }
.story-list { list-style: none; margin: 0; padding: 0; }
.story-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.story-list b { color: var(--clay); font: 400 1.35rem var(--serif); }
.story-list h3, .story-list p { margin: 0; }
.story-list h3 { font: 400 1.27rem var(--serif); }
.story-list p { color: var(--muted); }

.about {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2));
  background: var(--moss-dark);
  color: #fff;
}
.about h2 { margin: .25rem 0 1.5rem; font-size: clamp(2.6rem, 5vw, 5rem); }
.about > div:last-child { max-width: 630px; }
.about blockquote {
  margin: 2rem 0;
  padding-left: 1.4rem;
  border-left: 1px solid #dfd09f;
  font: italic 1.4rem var(--serif);
}
.about .eyebrow { color: #e7b99d; }
.about .draft-note { color: #d7ded5; }
.about-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .92);
  background: var(--paper-deep);
  box-shadow: 0 20px 55px rgba(15, 22, 16, .25);
  transform: rotate(-1deg);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art > .about-caption {
  position: absolute;
  right: .7rem;
  bottom: .7rem;
  padding: .4rem .65rem;
  background: rgba(255, 253, 248, .9);
  color: var(--moss-dark);
  font-size: .7rem;
}
.about-art .art-watermark {
  right: auto;
  bottom: .7rem;
  left: .7rem;
}

.process > ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
}
.process li { padding: 2rem; }
.process li + li { border-left: 1px solid var(--line); }
.process li > b {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
}
.process h3 { font: 400 1.48rem var(--serif); }
.process p { color: var(--muted); }

.faq {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(3rem, 9vw, 9rem);
  border-top: 1px solid var(--line);
}
.faq-list details { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font: 400 1.18rem var(--serif);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; color: var(--muted); }

.source-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
}
.source-note h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.source-note > p { color: var(--muted); }

.contact {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}
.contact-intro h2 { margin: .25rem 0 1rem; font: 400 clamp(2.6rem, 5vw, 5rem)/1.02 var(--serif); letter-spacing: -.038em; }
.contact-intro > p { color: var(--muted); }
.contact-routing { padding-left: 1rem; border-left: 2px solid var(--marigold); font-size: .78rem; }
.contact-form { display: grid; gap: 1rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid label { display: grid; gap: .42rem; }
.form-grid label > span { font-size: .76rem; font-weight: 750; }
.form-grid label > span small { display: block; color: var(--muted); font-weight: 500; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.contact-form textarea { resize: vertical; }
.contact-form input[type="file"] { padding: .55rem; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; color: var(--muted); font-size: .74rem; }
.consent input { width: 1rem; min-height: 0; height: 1rem; margin-top: .25rem; }
.form-submit { justify-self: start; min-width: 190px; }
.form-submit[disabled] { border-color: var(--line); background: var(--paper-deep); color: var(--muted); cursor: wait; }
.form-status { min-height: 1.5rem; margin: 0; color: var(--muted); font-size: .78rem; }
.form-status.success { color: var(--moss-dark); }
.form-status.error { color: var(--clay); }
.privacy-note {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: -4.5rem auto 5rem;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  color: var(--muted);
  font-size: .76rem;
}
.privacy-note summary { cursor: pointer; color: var(--ink); font-weight: 750; }
.privacy-note p { max-width: 900px; }

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: end;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .81rem;
}
.footer > div p { max-width: 430px; }
.footer nav { display: grid; gap: .42rem; }
.footer nav strong { color: var(--ink); font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; }
.filial-credit a { color: var(--ink); text-underline-offset: .25em; }

.backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(22, 30, 24, .5);
  opacity: 0;
  transition: opacity .2s;
}
.backdrop.visible { opacity: 1; }
.cart {
  position: fixed;
  z-index: 80;
  inset: 0 0 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 460px);
  background: var(--white);
  box-shadow: -20px 0 60px rgba(20, 28, 22, .24);
  transform: translateX(100%);
  transition: transform .2s;
}
.cart.visible { transform: none; }
.cart > header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cart h2 { margin: 0; font: 400 2rem var(--serif); }
.cart > header button, .dialog-close {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
}
.cart-body { overflow: auto; padding: 1.4rem; }
.cart-body > p { color: var(--muted); }
#cart-items { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: .85rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-thumb { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-deep); }
.cart-thumb img { width: 100%; height: 100%; object-fit: contain; background: var(--white); }
.cart-thumb .art-watermark { top: .2rem; bottom: auto; left: .2rem; padding: .16rem; }
.cart-thumb .art-watermark > i { flex-basis: 1.2rem; width: 1.2rem; height: 1.2rem; font-size: .65rem; }
.cart-thumb .art-watermark > span { display: none; }
.cart-item h3, .cart-item p { margin: 0; }
.cart-item h3 { font: 400 1rem var(--serif); }
.cart-item p { color: var(--muted); font-size: .77rem; }
.remove { border: 0; background: transparent; font-size: .73rem; text-decoration: underline; cursor: pointer; }
.cart > footer { padding: 1.4rem; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; gap: 1rem; font-size: 1.06rem; }
.cart > footer > p { color: var(--muted); font-size: .74rem; }
.checkout { width: 100%; margin-top: .8rem; }
.checkout:disabled { border-color: var(--line); background: var(--paper-deep); color: var(--muted); cursor: not-allowed; }

.product-dialog {
  width: min(calc(100% - 2rem), 1050px);
  max-height: min(90vh, 760px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(20, 28, 22, .32);
}
.product-dialog::backdrop { background: rgba(22, 30, 24, .62); backdrop-filter: blur(4px); }
.product-dialog[open] { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr); }
.dialog-close { position: absolute; z-index: 3; top: .8rem; right: .8rem; }
.detail-media { min-height: 620px; overflow: hidden; background: var(--paper-deep); }
.detail-media img { width: 100%; height: 100%; object-fit: contain; background: var(--white); }
.detail-media .art-watermark {
  top: 1.2rem;
  bottom: auto;
  left: 1.2rem;
}
.detail-copy { align-self: center; max-height: 90vh; overflow: auto; padding: clamp(2rem, 5vw, 4.2rem); }
.detail-copy h2 { margin: .2rem 0 1rem; font: 400 clamp(2.3rem, 4vw, 4.2rem)/1.05 var(--serif); letter-spacing: -.035em; }
.detail-description { color: var(--muted); }
.detail-copy dl { margin: 1.7rem 0; border-top: 1px solid var(--line); }
.detail-copy dl div { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: .68rem 0; border-bottom: 1px solid var(--line); }
.detail-copy dt { color: var(--muted); font-size: .77rem; }
.detail-copy dd { margin: 0; font-size: .82rem; }
.detail-price { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin: 1.5rem 0; }
.detail-price strong { font: 400 2rem var(--serif); }
.detail-price span { color: var(--muted); font-size: .75rem; }
.detail-actions { display: grid; gap: .85rem; }
.detail-actions a { justify-self: start; font-size: .78rem; text-underline-offset: .28em; }
.detail-photo-note {
  margin: 1.4rem 0 0;
  padding: .85rem 1rem;
  border-left: 2px solid var(--clay);
  background: var(--paper);
  color: var(--muted);
  font-size: .75rem;
}
.detail-photo-note strong { color: var(--ink); }

.commission-dialog {
  width: min(calc(100% - 2rem), 900px);
  max-height: 92vh;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  overflow: auto;
  border: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(20, 28, 22, .32);
}
.commission-dialog::backdrop { background: rgba(22, 30, 24, .62); backdrop-filter: blur(4px); }
.commission-dialog .dialog-close { position: absolute; top: .8rem; right: .8rem; }
.commission-dialog-head { max-width: 720px; margin-bottom: 2rem; padding-right: 2.5rem; }
.commission-dialog-head h2 { margin: .2rem 0 1rem; font: 400 clamp(2.4rem, 5vw, 4.7rem)/1.04 var(--serif); letter-spacing: -.035em; }
.commission-dialog-head > p:last-child { color: var(--muted); }

.artwork-page {
  width: min(calc(100% - 2.5rem), 1120px);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}
.artwork-page > .brand { margin-bottom: 3rem; }
.artwork-page article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.artwork-page-media { min-height: 680px; background: var(--white); box-shadow: var(--shadow); }
.artwork-page-media .art-watermark {
  top: 1rem;
  bottom: auto;
  left: 1rem;
}
.artwork-page-media img { width: 100%; height: 100%; min-height: 680px; object-fit: contain; }
.artwork-page-copy h1 { margin: .2rem 0 1rem; font: 400 clamp(2.8rem, 5vw, 5.2rem)/1.02 var(--serif); letter-spacing: -.038em; }
.artwork-page-copy > p:not(.eyebrow):not(.artwork-page-price):not(.draft-note) { color: var(--muted); }
.artwork-page-copy dl { margin: 1.8rem 0; border-top: 1px solid var(--line); }
.artwork-page-copy dl div { display: grid; grid-template-columns: 6rem 1fr; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.artwork-page-copy dt { color: var(--muted); font-size: .77rem; }
.artwork-page-copy dd { margin: 0; font-size: .84rem; }
.artwork-page-price { display: grid; gap: .08rem; }
.artwork-page-price strong { font: 400 2rem var(--serif); }
.artwork-page-price span { color: var(--muted); font-size: .75rem; }

.noscript {
  position: fixed;
  z-index: 99;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  background: #fff3cd;
  border: 1px solid #b38a18;
}

@keyframes pulse { to { background-position: -120% 0; } }

@media print {
  .art-watermarked { min-height: 8rem; background: var(--paper-deep); }
  .art-watermarked img { visibility: hidden !important; }
  .art-watermarked::after {
    content: "Vista protegida · Una acuarela diaria";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: var(--moss-dark);
    text-align: center;
    font: italic 1rem var(--serif);
  }
}

@media (max-width: 980px) {
  html { scroll-padding-top: 8rem; }
  .header { grid-template-columns: 1fr auto; gap: .75rem 1rem; }
  .cart-open-button { grid-column: 2; grid-row: 1; justify-self: end; }
  .header nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 1.35rem;
    overflow-x: auto;
    padding: .1rem 0;
    scrollbar-width: none;
  }
  .header nav::-webkit-scrollbar { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding-top: 0; }
  .hero-gallery { width: min(100%, 600px); min-height: 680px; margin: 0 auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .faq, .contact { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-art { width: min(100%, 520px); }
  .process > ol { grid-template-columns: 1fr; }
  .process li + li { border-top: 1px solid var(--line); border-left: 0; }
  .footer { grid-template-columns: 1fr 1fr; }
  .footer > p { grid-column: 1 / -1; }
  .commission-card { grid-template-columns: 1fr; }
  .commission-visual { width: min(100%, 520px); }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 7.25rem; }
  .notice { padding: .32rem .75rem; overflow: hidden; font-size: .66rem; white-space: nowrap; text-overflow: ellipsis; }
  .header { gap: .35rem .7rem; padding: .55rem 1rem .5rem; }
  .brand small { display: none; }
  .brand strong { font-size: .9rem; }
  .brand-mark { width: 2.05rem; height: 2.05rem; }
  .cart-open-button { min-height: 2.75rem; font-size: .76rem; }
  .header nav { gap: 1rem; padding: .08rem 1.5rem .08rem 0; font-size: .76rem; mask-image: linear-gradient(to right, #000 90%, transparent); }
  .hero, .section, .trust, .source-note, .footer { width: min(calc(100% - 2rem), var(--max)); }
  .hero { gap: 1.8rem; padding: 1.25rem 0 4rem; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.5rem); }
  .hero-gallery {
    order: -1;
    width: min(94%, 390px);
    min-height: clamp(290px, 86vw, 370px);
  }
  .hero-main { right: 11%; border-width: 7px; }
  .hero-small { border-width: 5px; }
  .actions { align-items: flex-start; flex-direction: column; }
  .trust { grid-template-columns: 1fr; }
  .trust > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 4.7rem 0; }
  .catalog-head { display: block; }
  .filter { margin-top: 1.5rem; }
  .grid { grid-template-columns: 1fr; gap: 3rem; }
  .product { width: 100%; max-width: 480px; margin: auto; }
  .commission-card { margin-bottom: 3.5rem; padding: .8rem; }
  .commission-copy { padding: 1rem .35rem 1.2rem; }
  .commission-visual, .commission-visual > img { min-height: 380px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .contact { gap: 2rem; }
  .privacy-note { width: min(calc(100% - 2rem), var(--max)); margin-top: -2.5rem; }
  .quote-band { padding-block: 3.5rem; }
  .about { width: 100%; padding-inline: 1rem; }
  .source-note { grid-template-columns: 1fr; padding: 4rem 0; }
  .footer { grid-template-columns: 1fr; }
  .footer > p { grid-column: auto; }
  .product-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; }
  .product-dialog[open] { display: block; overflow: auto; }
  .detail-media { width: 100%; height: 54vh; min-height: 0; }
  .detail-copy { align-self: stretch; max-height: none; padding: 2rem 1.25rem 3rem; }
  .dialog-close { position: fixed; }
  .commission-dialog { width: 100%; height: 100%; max-height: none; margin: 0; padding: 1.25rem; }
  .commission-dialog .dialog-close { position: fixed; }
  .artwork-page { width: min(calc(100% - 2rem), 1120px); }
  .artwork-page article { grid-template-columns: 1fr; }
  .artwork-page-media, .artwork-page-media img { min-height: 0; }
}

@media (max-width: 375px) {
  .product-dialog { height: 100dvh; }
  .detail-media { height: min(42svh, 320px); }
  .detail-copy { padding: 1.5rem 1rem 2.5rem; }
  .product-dialog .dialog-close {
    top: max(.65rem, env(safe-area-inset-top));
    right: max(.65rem, env(safe-area-inset-right));
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 254, 250, .96);
    box-shadow: 0 5px 18px rgba(39, 49, 41, .16);
  }
  .detail-media .art-watermark { top: .65rem; right: auto; bottom: auto; left: .65rem; }
}

@media (max-width: 360px) {
  .brand { gap: .4rem; }
  .brand-mark { width: 1.85rem; height: 1.85rem; }
  .brand strong { font-size: .82rem; }
  .cart-open-button { gap: .35rem; padding-inline: 0; white-space: nowrap; }
  .cart-label { text-transform: capitalize; }
  .cart-label-prefix { display: none; }
}

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