@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500&display=swap');

/* ─── tokens ─────────────────────────────────────────────── */
:root {
  --paper: #f5f1e8;
  --ink:   #25211e;
  --muted: #585752;
  --line:  rgba(37,33,30,.32);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --shell-max: 1380px;
  --shell-pad: 80px;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── shell ──────────────────────────────────────────────── */
.page-shell {
  width: min(100% - (var(--shell-pad) * 2), var(--shell-max));
  margin-inline: auto;
}

/* ─── type ───────────────────────────────────────────────── */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
}

.hero-display {
  font-size: clamp(80px, 9.5vw, 140px);
  line-height: 0.88;
}

.section-display {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.92;
}

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--muted);
}

/* ─── rule ───────────────────────────────────────────────── */
.rule {
  width: 36px;
  height: 1px;
  background: rgba(37,33,30,.55);
  border: 0;
  margin: 0;
}

/* ─── button ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 500;
  border: 1px solid rgba(37,33,30,.55);
  border-radius: 0;
  padding: 13px 24px;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: opacity .2s ease;
}
.btn:hover { opacity: .55; }

/* ─── nav ────────────────────────────────────────────────── */
.site-header {
  position: relative;
  z-index: 100;
  padding: 0 var(--shell-pad);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-wordmark {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--ink); }

.nav-cta {
  border: 1px solid rgba(37,33,30,.55);
  padding: 10px 18px;
}
.site-nav a.nav-cta[aria-current="page"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.site-nav a.nav-cta[aria-current="page"]:hover { opacity: 1; }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 200;
  flex-direction: column;
  padding: 32px var(--shell-pad);
  overflow: hidden;
}
.nav-drawer.open { display: flex; }
.nav-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}
.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav-drawer nav a {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

/* ─── footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 40px var(--shell-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.site-footer p {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.footer-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-right a {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.footer-right a:hover { color: var(--ink); }

/* ─── panorama band ──────────────────────────────────────── */
.panorama-band {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.panorama-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.panorama-words {
  position: absolute;
  right: var(--shell-pad);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.panorama-words span {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.panorama-words::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(37,33,30,.55);
  margin-top: 8px;
}

/* ─── scroll-reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════════════════════════
   HOME
══════════════════════════════════════════════════════════ */

/* hero */
.home-hero {
  padding-top: 48px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
}
.home-hero-left {
  padding-top: 20px;
}
.home-hero-left .hero-display {
  margin-bottom: 24px;
}
.home-hero-tagline {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 340px;
}
.home-hero-links {
  display: flex;
  gap: 28px;
  margin-top: 16px;
}
.home-hero-links a {
  font-family: var(--font-sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.home-hero-links a:hover { color: var(--ink); }
.home-hero-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  margin-right: calc(-1 * var(--shell-pad));
}
.home-hero-right img {
  width: 100%;
  height: auto;
}

/* selected works */
.selected-works {
  padding-bottom: 40px;
}

/* row 1: landscape-oil large left, text right */
.work-row-1 {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.work-row-1 img {
  width: 100%;
}

/* row 2: text left, two cowboy images right */
.work-row-2 {
  display: grid;
  grid-template-columns: 1fr 63%;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.work-row-2-images {
  display: flex;
  gap: 16px;
  align-items: flex-end;
}
.work-row-2-images img:first-child {
  width: 42%;
  align-self: flex-end;
}
.work-row-2-images img:last-child {
  width: 46%;
}

/* row 3: portrait left, text right */
.work-row-3 {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.work-row-3 img {
  width: 100%;
}

/* row 4: text left, dog right */
.work-row-4 {
  display: grid;
  grid-template-columns: 1fr 36%;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}
.work-row-4 img {
  width: 100%;
}

/* row 5: desert-ink left, text right */
.work-row-5 {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.work-row-5 img {
  width: 100%;
}

/* work text blocks */
.work-text h3 {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1;
  margin-bottom: 16px;
}
.work-text .label {
  display: block;
  margin-bottom: 20px;
}
.work-text .rule {
  margin-bottom: 16px;
}
.work-text .view-link {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.work-text .view-link:hover { color: var(--ink); }
.work-text .view-link::after { content: " →"; }

/* darken: for any pixel lighter than --paper → page color wins (no seam);
   for any darker pixel (ink lines, watercolor washes, pencil tones) → image wins */
.graphite, .blend-paper {
  mix-blend-mode: darken;
}

/* artist band */
.artist-band {
  padding: 64px 0 80px;
}
.artist-band-inner {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 72px;
  align-items: center;
}
.artist-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 68%;
}
.artist-text .label {
  display: block;
  margin-bottom: 24px;
}
.artist-text h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.artist-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 32px;
}
.artist-text a {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
}
.artist-text a:hover { opacity: .6; }

/* closing inquiries block */
.home-closing {
  padding: 64px 0 80px;
}
.home-closing-inner {
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 80px;
  align-items: center;
}
.home-closing-left .label { display: block; margin-bottom: 28px; }
.home-closing-list {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  list-style: none;
  padding: 0;
}
.home-closing-right img {
  width: 100%;
  opacity: .72;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════ */

.about-hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 80px;
  align-items: center;
  padding: 80px 0 100px;
}
.about-hero-left h1 { margin-bottom: 28px; }
.about-hero-left .hero-display { line-height: 0.9; }
.about-hero-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}
.about-hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center 60%;
}

.about-bio {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 80px;
  align-items: start;
}
.about-bio-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 20px;
}
.about-bio-img {
  width: 100%;
  margin-top: 20px;
}

.about-landscape {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 80px;
  align-items: center;
}
.about-landscape-img { width: 100%; }
.about-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.2;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-details {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 80px;
  align-items: start;
}
.about-details-img { width: 100%; }
.about-details-right h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 40px;
}
.about-meta-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.about-meta-col .col-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 12px;
}
.about-meta-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-meta-col li {
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
}

.about-closing {
  padding: 80px 0 120px;
  display: grid;
  grid-template-columns: 1fr 34%;
  gap: 80px;
  align-items: center;
}
.about-closing-links { display: flex; flex-direction: column; gap: 20px; }
.about-closing-links a {
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
}
.about-closing-links a:hover { opacity: .6; }
.about-closing-img { width: 100%; }

/* ══════════════════════════════════════════════════════════
   WORK
══════════════════════════════════════════════════════════ */

.work-hero {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 80px;
  align-items: start;
}
.work-hero h1 { margin-bottom: 28px; }
.work-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 20px;
}
.work-hero .label { display: block; margin-bottom: 16px; }
.work-hero-img {
  max-height: 640px;
  width: auto;
  max-width: 100%;
  display: block;
  margin-top: 20px;
  margin-left: auto;
}

.work-collections { padding-bottom: 60px; }

.work-section {
  display: grid;
  gap: 72px;
  align-items: center;
  margin-bottom: 160px;
}
.work-section.text-left { grid-template-columns: 1fr 42%; }
.work-section.text-right { grid-template-columns: 40% 1fr; }

.work-section img { width: 100%; }

.work-section-text h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  margin-bottom: 20px;
}
.work-section-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 360px;
  margin: 0 0 24px;
}
.work-section-text .view-link {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.work-section-text .view-link:hover { color: var(--ink); }
.work-section-text .view-link::after { content: " →"; }

/* ══════════════════════════════════════════════════════════
   WESTERN
══════════════════════════════════════════════════════════ */

.western-hero {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 80px;
  align-items: start;
}
.western-hero h1 { margin-bottom: 20px; }
.western-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 400px;
  margin: 0 0 28px;
}
.western-filters {
  display: flex;
  gap: 28px;
}
.western-filters span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.western-hero-img {
  max-height: 640px;
  width: auto;
  max-width: 78%;
  margin-left: auto;
  margin-top: 10px;
  display: block;
}

.western-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  row-gap: 130px;
  padding-bottom: 140px;
}
.western-piece img { width: 100%; }
.western-piece-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 28px 0 14px;
}
.western-piece .rule { margin: 0 0 12px; }
.western-piece-medium {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: none;
  color: var(--muted);
}

.western-closing {
  padding: 100px 0 130px;
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: 80px;
  align-items: center;
}
.western-closing-list {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  list-style: none;
  padding: 0;
}
.western-closing-img { width: 100%; opacity: .72; }

/* ══════════════════════════════════════════════════════════
   COMMISSIONS
══════════════════════════════════════════════════════════ */

.comm-hero {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 80px;
  align-items: start;
}
.comm-hero h1 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.92;
  margin-bottom: 28px;
}
.comm-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 36px;
}
.comm-hero-img { width: 100%; }

.comm-dog {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 80px;
  align-items: center;
}
.comm-hero-img {
  max-height: 680px;
  width: auto;
  max-width: 100%;
  display: block;
}
.comm-dog-img { width: 100%; }
.comm-dog-text h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.comm-dog-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}

.comm-what {
  padding: 60px 0 100px;
  display: grid;
  grid-template-columns: 1fr 38%;
  gap: 80px;
  align-items: start;
}
.comm-what-text h2 {
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1;
  margin-bottom: 24px;
}
.comm-what-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 20px;
}
.comm-what-img { width: 100%; margin-top: 20px; }

.comm-media {
  padding-top: 120px;
  padding-bottom: 130px;
  text-align: center;
}
.comm-media .label { display: block; margin-bottom: 28px; }
.comm-media-list {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  list-style: none;
  padding: 0;
}

.comm-divider {
  width: 100%;
  opacity: .65;
}

.comm-process {
  padding: 120px 0 140px;
}
.comm-process h2 {
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 64px;
}
.comm-process-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  position: relative;
}
.comm-process-cols::before,
.comm-process-cols::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.comm-process-cols::before { left: calc(33.33% + 0px); }
.comm-process-cols::after  { left: calc(66.66% + 0px); }
.comm-step-num {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 20px;
}
.comm-step h3 {
  font-size: 22px;
  margin-bottom: 16px;
}
.comm-step p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.comm-avail {
  padding: 80px 0 130px;
  display: grid;
  grid-template-columns: 1fr 40%;
  gap: 80px;
  align-items: center;
}
.comm-avail-left h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.comm-avail-left p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 36px;
}
.comm-avail-img { width: 100%; opacity: .72; }

/* ══════════════════════════════════════════════════════════
   INQUIRIES
══════════════════════════════════════════════════════════ */

.inq-hero {
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: 1fr 42%;
  gap: 80px;
  align-items: start;
}
.inq-hero h1 { margin-bottom: 24px; }
.inq-hero p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 20px;
}
.inq-comm-link {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 48px;
}
.inq-comm-link a {
  color: var(--ink);
  text-decoration: none;
}
.inq-comm-link a:hover { opacity: .6; }
.inq-hero-img {
  width: 80%;
  margin-left: auto;
  margin-top: 20px;
}

.inq-form-wrap {
  width: 80%;
  padding-bottom: 100px;
}

.inq-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-group label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.field-group input,
.field-group select,
.field-group textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(37,33,30,.4);
  border-radius: 0;
  padding: 0 16px;
  height: 58px;
  width: 100%;
  outline: none;
  transition: border-color .15s;
  -webkit-appearance: none;
  appearance: none;
}
.field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2325211e' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.field-group textarea {
  height: 200px;
  padding: 16px;
  resize: vertical;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--ink);
}
.hidden { display: none; }

.inq-secondary {
  padding: 60px 0 100px;
}
.inq-secondary h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.inq-secondary p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 6px;
}
.inq-secondary a {
  color: var(--ink);
  text-decoration: none;
}
.inq-secondary a:hover { opacity: .6; }

.inq-quote {
  padding: 60px 0 100px;
  max-width: 600px;
}
.inq-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-style: italic;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 16px;
}

/* ══════════════════════════════════════════════════════════
   MOBILE
══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  :root { --shell-pad: 24px; }

  .site-header { padding: 0 24px; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  /* home hero */
  .home-hero {
    grid-template-columns: 1fr;
    padding-top: 32px;
    padding-bottom: 48px;
    gap: 40px;
  }
  .home-hero-right {
    justify-content: flex-start;
    margin-right: -24px;
    margin-left: -24px;
  }
  .home-hero-right img { width: 100%; height: auto; }
  .home-hero-left .hero-display { font-size: clamp(68px, 18vw, 90px); }

  /* work rows stack */
  .work-row-1, .work-row-2, .work-row-3,
  .work-row-4, .work-row-5 {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 80px;
  }
  .work-row-1 img { width: calc(100% + 48px); margin-left: -24px; margin-right: -24px; }
  .work-row-2-images { order: -1; gap: 12px; flex-direction: row; flex-wrap: nowrap; }
  .work-row-2-images img:first-child { width: 42%; }
  .work-row-2-images img:last-child  { width: 52%; }
  .work-row-3 img { width: 78%; }
  .work-row-4 img { order: -1; width: 92%; margin-left: auto; }
  .work-row-5 img { width: 90%; }

  /* artist band */
  .artist-band-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .artist-photo { height: 420px; width: 88%; }

  /* home closing */
  .home-closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* about */
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 40px 0 60px;
  }
  .about-hero-img {
    width: 88%;
    height: 480px;
    order: -1;
    margin-left: auto;
  }
  .about-bio { grid-template-columns: 1fr; gap: 40px; }
  .about-bio-img { order: -1; }
  .about-landscape { grid-template-columns: 1fr; gap: 40px; }
  .about-details { grid-template-columns: 1fr; gap: 40px; }
  .about-meta-cols { grid-template-columns: repeat(2, 1fr); }
  .about-closing { grid-template-columns: 1fr; gap: 40px; }
  .about-closing-img { order: -1; }

  /* work page */
  .work-hero { grid-template-columns: 1fr; gap: 40px; }
  .work-hero-img { order: -1; }
  .work-section.text-left,
  .work-section.text-right { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .work-section.text-left img { order: -1; }

  /* western */
  .western-hero { grid-template-columns: 1fr; gap: 40px; }
  .western-hero-img { order: -1; }
  .western-grid { grid-template-columns: 1fr; row-gap: 80px; }
  .western-grid .western-piece:nth-child(1) img { width: 95%; }
  .western-grid .western-piece:nth-child(2) img { width: 76%; margin-left: auto; }
  .western-grid .western-piece:nth-child(3) img { width: 90%; }
  .western-grid .western-piece:nth-child(4) img { width: 80%; }
  .western-closing { grid-template-columns: 1fr; gap: 40px; }
  .western-closing-img { order: -1; }

  /* commissions */
  .comm-hero, .comm-dog, .comm-what, .comm-avail {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .comm-hero-img { order: -1; }
  .comm-dog .comm-dog-img { order: -1; }
  .comm-what-img { order: -1; }
  .comm-avail-img { order: -1; }
  .comm-media-list { font-size: clamp(28px, 8vw, 42px); }
  .comm-process-cols { grid-template-columns: 1fr; gap: 40px; }
  .comm-process-cols::before,
  .comm-process-cols::after { display: none; }
  .comm-step { padding-bottom: 40px; border-bottom: 1px solid var(--line); }
  .comm-step:last-child { border-bottom: 0; padding-bottom: 0; }

  /* inquiries */
  .inq-hero { grid-template-columns: 1fr; gap: 40px; }
  .inq-form-wrap { width: 100%; }
  .inq-hero-img { order: -1; width: 80%; margin-left: auto; }

  /* panorama */
  .panorama-band { height: 200px; }

  /* footer */
  .site-footer { flex-direction: column; gap: 16px; text-align: center; }
}

@media (min-width: 768px) and (max-width: 1099px) {
  :root { --shell-pad: 48px; }
  .home-hero { grid-template-columns: 1fr 1fr; }
  .artist-band-inner { grid-template-columns: 44% 1fr; }
  .comm-process-cols { gap: 40px; }
}
