:root {
  --page: #ffffff;
  --ink: #080808;
  --text: #272727;
  --muted: #666666;
  --soft: #f5f5f5;
  --rule: #d9d9d9;
  --error: #7c1717;
  --focus: #005fcc;
  --success: #165b33;
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --reading: 760px;
  --wide: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(72px, 9vw, 132px);
  --header-offset: 130px;
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; background: var(--page); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
main { display: block; min-width: 0; }
main [id] { scroll-margin-top: calc(var(--header-offset) + 20px); }
figure { margin: 0; }
p, li { overflow-wrap: anywhere; }
img, picture { display: block; }
img { max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:hover { text-underline-offset: .34em; }
button, input, select, textarea { color: inherit; font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.03;
}
h1 { margin-bottom: 28px; font-size: clamp(48px, 7vw, 96px); letter-spacing: -.025em; }
h2 { margin-bottom: 22px; font-size: clamp(36px, 4.4vw, 62px); letter-spacing: -.015em; }
h3 { margin-bottom: 14px; font-size: clamp(27px, 2.6vw, 38px); }
p, ul, ol { margin-bottom: 1.15em; }
address { font-style: normal; }

.reading-width { width: min(var(--reading), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.wide-content { width: min(var(--wide), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: #000;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* Header and navigation -------------------------------------------------- */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 96px;
  padding: 16px var(--gutter);
  border-bottom: 1px solid #e5e5e5;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
}
.site-header::after {
  grid-column: 2;
  grid-row: 1;
  color: var(--muted);
  content: "Downtown Amarillo · Appointment only";
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand { grid-column: 1; grid-row: 1; display: block; width: min(238px, 44vw); text-decoration: none; }
.brand-logo { width: 100%; height: auto; }
.menu-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}
.menu-toggle {
  position: fixed;
  z-index: 200;
  top: 23px;
  right: var(--gutter);
  color: var(--ink);
  visibility: hidden;
}
.site-ready .menu-toggle,
.payment-status-page .menu-toggle { visibility: visible; }
.menu-toggle::before {
  width: 20px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  box-shadow: inset 0 -6px 0 -5px currentColor;
  content: "";
}
.menu-open .menu-toggle { visibility: hidden; }
.menu-panel {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vh, 44px);
  min-height: 100dvh;
  padding: clamp(130px, 15vh, 170px) var(--gutter) 36px;
  overflow-y: auto;
  color: #fff;
  background: #080808;
}
.menu-close {
  position: absolute;
  z-index: 2;
  top: 23px;
  right: var(--gutter);
  color: #fff;
}
.menu-close::before {
  width: 20px;
  height: 20px;
  background:
    linear-gradient(45deg, transparent 47%, currentColor 48%, currentColor 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, currentColor 48%, currentColor 52%, transparent 53%);
  content: "";
}
.menu-panel :focus-visible { outline-color: #fff; }
.menu-brand {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: var(--gutter);
  display: block;
  width: min(220px, 46vw);
  text-decoration: none;
}
.menu-brand-logo { display: block; width: 100%; height: auto; }
.menu-nav { align-self: center; width: min(1280px, 100%); margin-inline: auto; }
.menu-nav ul,
.social-list,
.noscript-nav ul,
.category-links { padding: 0; margin: 0; list-style: none; }
.menu-nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 40px; }
.menu-nav li { min-width: 0; }
.menu-nav li:last-child { grid-column: 1 / -1; justify-self: center; }
.menu-nav a {
  display: inline-flex;
  min-block-size: 50px;
  align-items: center;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(44px, 6.2vw, 82px);
  letter-spacing: -.025em;
  line-height: 1.04;
  text-decoration-color: transparent;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}
.menu-nav a[href="/gallery/"] {
  font-size: clamp(38px, 5.1vw, 72px);
  white-space: nowrap;
}
.menu-nav a:hover,
.menu-nav a:focus-visible,
.menu-nav a[aria-current="page"] { text-decoration-color: currentColor; }
.menu-meta {
  display: flex;
  width: min(1280px, 100%);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.24);
  margin-inline: auto;
  color: #bdbdbd;
  font-size: 14px;
}
.menu-meta .social-list { margin-bottom: 0; }
.menu-meta p { margin: 0; white-space: nowrap; }
.menu-meta a { color: #fff; }
.social-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 12px; }
.noscript-nav { padding: 12px var(--gutter); border-bottom: 1px solid #e5e5e5; }
.noscript-nav ul { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.noscript-nav a { font-family: var(--display); text-transform: uppercase; }
.site-ready .fallback-nav { display: none; }
/* Buttons and links ------------------------------------------------------ */
.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.button:hover, .button:focus-visible { color: var(--ink); background: #fff; transform: translateY(-1px); }
.button-secondary { color: var(--ink); background: #fff; }
.button-secondary:hover, .button-secondary:focus-visible { color: #fff; background: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.text-link { font-family: var(--display); letter-spacing: .04em; text-transform: uppercase; }

/* Homepage --------------------------------------------------------------- */
.home-intro {
  padding: clamp(72px, 9vw, 118px) 0 clamp(62px, 8vw, 96px);
  text-align: center;
}
.home-intro h1 { margin-bottom: 28px; font-size: clamp(54px, 6.6vw, 82px); }
.home-intro .home-copy { max-width: 700px; margin-inline: auto; font-size: clamp(17px, 1.4vw, 19px); }
.home-intro .home-copy p { margin-bottom: 1em; }
.home-intro .button-row { justify-content: center; }
.home-portfolio { padding-top: 0; }
.home-secondary { padding-bottom: var(--section); }
.home-secondary > header { max-width: 760px; margin-bottom: 42px; }

/* Interior page introductions ------------------------------------------ */
.page-hero { padding: clamp(72px, 9vw, 116px) 0 clamp(58px, 7vw, 88px); text-align: left; }
.page-hero.compact-hero { padding-bottom: clamp(50px, 6vw, 72px); }
.page-hero h1 { max-width: 900px; }
.page-hero .hero-copy { max-width: 700px; font-size: 18px; }
.hero-subheading { margin-bottom: 24px; color: var(--muted); font-family: var(--display); font-size: 18px; letter-spacing: .08em; text-transform: uppercase; }
.split-hero {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(380px,1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  padding: clamp(72px, 9vw, 116px) 0 var(--section);
}
.split-hero-copy h1 { font-size: clamp(52px, 6vw, 82px); }
.split-hero-copy p { max-width: 620px; }
.split-hero-media { overflow: hidden; background: var(--soft); }
.split-hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Shared editorial compositions ---------------------------------------- */
.feature-stack { width: min(var(--wide), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.feature-row {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(320px,.88fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  margin-bottom: var(--section);
}
.feature-row.feature-reverse .feature-media { order: 2; }
.feature-row.feature-reverse .feature-copy { order: 1; }
.feature-media { overflow: hidden; background: var(--soft); }
.feature-image { width: 100%; max-height: 820px; object-fit: cover; transition: transform 450ms cubic-bezier(.2,.7,.2,1); }
.feature-row:hover .feature-image { transform: scale(1.012); }
.feature-copy { max-width: 540px; }
.feature-copy h2 { font-size: clamp(38px, 4.2vw, 58px); }
.reading-section,
.photography-process,
.design-process,
.salon-process,
.gallery-questions { padding: 0 0 clamp(66px, 8vw, 104px); }
.process-list { padding-left: 1.25em; }
.process-list li { padding-left: .45em; margin-bottom: .9em; }
.compact-process { margin-bottom: 30px; }
.information-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(36px, 6vw, 76px); }
.information-grid.three-up { grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(30px, 4.5vw, 64px); }
.information-grid article { min-width: 0; }
.information-grid h3 { font-size: clamp(28px, 2.8vw, 39px); }
.cta-panel {
  width: min(920px, calc(100% - 2 * var(--gutter)));
  padding: clamp(42px, 6vw, 70px);
  margin: 0 auto var(--section);
  color: #fff;
  background: #080808;
}
.cta-panel h2, .cta-panel a { color: #fff; }
.cta-panel .button { border-color: #fff; color: #000; background: #fff; }
.cta-panel .button:hover { color: #fff; background: #000; }
.cta-panel .button-secondary { color: #fff; background: #000; }
.cta-panel :focus-visible {
  outline-color: #fff;
  box-shadow: 0 0 0 2px #000, 0 0 0 5px #fff;
}

/* About ----------------------------------------------------------------- */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0,.95fr) minmax(360px,.75fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
  width: min(1160px, calc(100% - 2 * var(--gutter)));
  padding: clamp(72px, 9vw, 120px) 0 var(--section);
  margin-inline: auto;
}
.about-intro-copy h1 { font-size: clamp(50px, 6vw, 82px); }
.about-intro-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-practices { padding-bottom: var(--section); }
.about-practices > h2 { max-width: 760px; margin-bottom: 52px; }
.about-image { width: 100%; }

/* Portfolio and archive ------------------------------------------------- */
.portfolio-section { width: min(1400px, calc(100% - 2 * var(--gutter))); padding: 0 0 var(--section); margin-inline: auto; }
.portfolio-intro { max-width: 760px; padding-bottom: 34px; margin-inline: auto; text-align: center; }
.portfolio-grid {
  --portfolio-columns: 4;
  --portfolio-gap: 14px;
  display: block;
  column-count: 4;
  column-gap: var(--portfolio-gap);
}
.portfolio-grid.portfolio-grid-masonry-ready { position: relative; column-count: 1; }
.portfolio-grid-masonry-ready > .portfolio-card { position: absolute; margin: 0; }
.portfolio-card { min-width: 0; margin: 0 0 14px; break-inside: avoid; }
.portfolio-link { position: relative; display: block; overflow: hidden; color: #fff; background: var(--soft); text-decoration: none; }
.portfolio-link picture { display: block; }
.portfolio-image { width: 100%; height: auto; transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease; }
.portfolio-overlay {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 42px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.portfolio-link:hover .portfolio-image,
.portfolio-link:focus-visible .portfolio-image { transform: scale(1.018); opacity: .94; }
.portfolio-link:hover .portfolio-overlay,
.portfolio-link:focus-visible .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-title { font-family: var(--display); font-size: 24px; line-height: 1.05; }
.portfolio-category { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.portfolio-controls { position: sticky; z-index: 20; top: var(--header-offset); padding: 14px 0 18px; margin-bottom: 24px; background: rgba(255,255,255,.98); backdrop-filter: blur(8px); }
.filter-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px 24px; }
.filter-buttons button,
.filter-buttons a { display: inline-flex; min-height: 44px; align-items: center; padding: 4px 0; border: 0; border-bottom: 1px solid transparent; color: var(--muted); background: transparent; font-family: var(--display); letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.filter-buttons button:hover,
.filter-buttons button[aria-pressed="true"],
.filter-buttons a:hover,
.filter-buttons a:focus-visible { border-bottom-color: var(--ink); color: var(--ink); }
.category-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
.portfolio-ready .portfolio-fallback-links { display: none; }
.portfolio-more { margin-top: 30px; text-align: center; }
.home-portfolio-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Gallery scenes and film ---------------------------------------------- */
.gallery-film-wrap { padding-bottom: var(--section); }
.signature-film { padding: 0; }
.signature-film-heading { max-width: 700px; margin-bottom: 30px; }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-facade { position: relative; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #000; cursor: pointer; }
.video-facade:focus-visible { outline-color: #fff; outline-offset: -5px; }
.video-facade picture { display: block; width: 100%; height: 100%; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: opacity 180ms ease, transform 420ms ease; }
.video-facade:hover img { opacity: .9; transform: scale(1.01); }
.video-facade__overlay { position: absolute; inset: 0; display: grid; place-items: center; }
.video-facade__play { padding: 13px 20px; border: 1px solid #fff; color: #fff; background: rgba(0,0,0,.72); font-family: var(--display); letter-spacing: .1em; text-transform: uppercase; }
.video-fallback { margin-top: 12px; }
.scene-list { margin-bottom: var(--section); }
.scene { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(44px,7vw,96px); margin-bottom: var(--section); }
.scene:nth-child(even) .scene-media { order: 2; }
.scene-image { width: 100%; }
.scene-copy { max-width: 520px; }
.external-actions { display: flex; flex-wrap: wrap; gap: 10px 18px; }
.edition-summary { padding-bottom: var(--section); }
.edition-summary > header { max-width: 760px; margin-bottom: 44px; }

/* Websites -------------------------------------------------------------- */
.design-services,
.design-portfolio { padding-bottom: var(--section); }
.design-services > h2 { max-width: 760px; margin-bottom: 46px; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.design-project-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(34px,5vw,70px); }
.design-project,
.design-project-group { display: grid; grid-template-columns: 88px minmax(0,1fr); align-items: start; gap: 24px; min-width: 0; padding: 0; background: transparent; }
.design-project-media { display: block; width: 88px; aspect-ratio: 1; overflow: hidden; background: var(--soft); text-decoration: none; }
.design-project-media picture { display: block; width: 100%; height: 100%; }
.design-project-image,
.app-icon-image { width: 100%; height: 100%; object-fit: contain; }
.design-project-copy { min-width: 0; }
.design-project-copy h3 { margin-bottom: 8px; font-size: clamp(27px,2.6vw,35px); }
.design-project-copy p { margin-bottom: .72em; }
.case-study-note { color: var(--muted); font-size: 14px; }
.field-optional,
.form-required-note { color: var(--muted); }
.form-draft-status:empty { display: none; }
.selected-work-note { max-width: 820px; margin: 46px 0 0; color: var(--muted); }

/* Contact and salon ----------------------------------------------------- */
.contact-studio { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(46px,7vw,94px); align-items: start; padding-bottom: var(--section); }
.contact-details { width: auto; margin: 0; }
.contact-details h2 { font-size: 46px; }
.contact-location { min-width: 0; }
.contact-map { display: block; overflow: hidden; background: var(--soft); }
.contact-map img { width: 100%; aspect-ratio: 16/10; object-fit: cover; filter: grayscale(1); }
.contact-map-caption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 20px; padding-top: 14px; font-size: 14px; }
.inquiry-section { padding-bottom: var(--section); }
.inquiry-section > h2 { max-width: 760px; margin-bottom: 44px; }
.license-note { color: var(--muted); font-size: 14px; }
.request-panel { padding: clamp(38px,5vw,58px); margin-bottom: var(--section); background: var(--soft); }
.request-panel h2 { max-width: 700px; }
.request-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 28px; }
.request-actions .button { width: 100%; }
.request-actions .text-link { grid-column: 1 / -1; justify-self: start; margin-top: 12px; }
.salon-overview { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr); align-items: center; gap: clamp(46px,7vw,94px); padding-bottom: var(--section); }
.salon-overview-media { overflow: hidden; background: var(--soft); }
.salon-overview-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.stacked-notes { display: grid; gap: 24px; }
.stacked-notes article { min-width: 0; }
.stacked-notes h3 { margin-bottom: 7px; font-size: 29px; }

/* Questions ------------------------------------------------------------- */
.compact-faq { display: grid; gap: 6px; margin: 34px 0; }
.compact-faq details,
.faq-list details { padding: 12px 0; }
.compact-faq summary,
.faq-list summary { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); font-family: var(--display); font-size: 24px; cursor: pointer; list-style: none; }
.compact-faq summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker { display: none; }
.compact-faq summary::after,
.faq-list summary::after { flex: 0 0 auto; content: "+"; }
.compact-faq details[open] summary::after,
.faq-list details[open] summary::after { content: "−"; }
.compact-faq details p,
.faq-list details p { max-width: 680px; margin: 12px 0 0; }
.faq-section { padding-bottom: var(--section); }

/* Detail, category, legal, and utility pages ---------------------------- */
.breadcrumbs { padding-top: 34px; color: var(--muted); font-size: 14px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px 10px; padding: 0; margin: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 10px; content: "/"; }
.portfolio-detail { padding-bottom: var(--section); }
.detail-heading { padding: 72px 0 42px; text-align: center; }
.detail-heading h1 { font-size: clamp(52px, 7vw, 92px); }
.detail-figure { width: min(1180px, calc(100% - 2 * var(--gutter))); margin: 0 auto var(--section); }
.detail-image { width: 100%; max-height: 1180px; object-fit: contain; }
.detail-inquiry { padding-bottom: 68px; text-align: center; }
.detail-nav { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; width: min(1180px, calc(100% - 2 * var(--gutter))); margin-inline: auto; font-family: var(--display); text-transform: uppercase; }
.detail-nav a:last-child { text-align: right; }
.category-heading { padding: 72px 0 56px; text-align: center; }
.portfolio-context { color: var(--muted); }
.legal-page { padding: 74px 0 var(--section); }
.legal-page h1 { font-size: clamp(52px, 7vw, 88px); }
.legal-page section { margin-top: 48px; }
.revision-note, .legal-intro { color: var(--muted); }
.not-found { padding: clamp(100px, 15vw, 190px) 0; text-align: center; }
.not-found-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.payment-status-page .not-found { min-height: 60vh; }

/* Forms and messages ---------------------------------------------------- */
form { display: grid; gap: 18px; }
label { display: grid; gap: 7px; color: var(--ink); }
input, select, textarea { width: 100%; padding: 12px 13px; border: 1px solid #777; border-radius: 0; background: #fff; }
textarea { min-height: 150px; resize: vertical; }
.form-message, .revision-note { padding: 16px; background: var(--soft); }
.form-message.error { color: var(--error); }
.form-message.success { color: var(--success); }

/* Footer ---------------------------------------------------------------- */
.site-footer { padding: 48px var(--gutter); border-top: 1px solid var(--rule); }
.footer-inner { width: min(var(--wide), 100%); margin-inline: auto; }
.footer-simple { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 24px; align-items: start; font-size: 13px; }
.footer-simple p { margin-bottom: 0; }
.footer-name { color: var(--ink); font-family: var(--display); font-size: 28px; text-transform: uppercase; }
.back-to-top {
  position: fixed;
  z-index: 90;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  background: #000;
  font-family: var(--display);
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}


/* Social icon links ------------------------------------------------------ */
.social-icon-list { align-items: center; gap: 10px; }
.social-icon-list li { display: flex; }
.social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.social-link:hover,
.social-link:focus-visible { transform: translateY(-1px); }
.social-icon-shell {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}
.social-icon { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.social-icon-fill { fill: currentColor; stroke: none; }
.social-icon-brand-fill { fill: currentColor; stroke: none; }
.menu-panel .social-link { color: #fff; border-color: rgba(255,255,255,.38); }
.menu-panel .social-icon-shell { color: #080808; background: #fff; }
.menu-panel .social-link:hover,
.menu-panel .social-link:focus-visible { color: #080808; background: #fff; border-color: #fff; }
.menu-panel .social-link:hover .social-icon-shell,
.menu-panel .social-link:focus-visible .social-icon-shell { color: #fff; background: #080808; }

.page-design .page-hero h1 { font-size: clamp(48px, 6.2vw, 88px); }

/* Refined project icons and grouped systems ----------------------------- */
.design-project-grid { align-items: start; }
.design-project-media {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22.37%;
  background: transparent;
  box-shadow: 0 1px 2px rgba(0,0,0,.18), 0 11px 25px rgba(0,0,0,.14);
  isolation: isolate;
  transition: box-shadow .2s ease, transform .2s ease;
}
.design-project-media::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.35);
  content: "";
  pointer-events: none;
}
a.design-project-media:hover,
a.design-project-media:focus-visible { box-shadow: 0 2px 4px rgba(0,0,0,.2), 0 16px 34px rgba(0,0,0,.18); transform: translateY(-3px); }
.design-project-image,
.app-icon-image { border-radius: inherit; }
.app-icon-image { object-fit: cover; }
.design-project--wide {
  grid-column: 1 / -1;
  grid-template-columns: 190px minmax(0,1fr);
  align-items: center;
  padding: clamp(24px,3.5vw,42px);
  border: 1px solid var(--rule);
  background: var(--soft);
}
.design-icon-pair { display: grid; grid-template-columns: repeat(2,88px); gap: 14px; }
.project-link-list { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.project-link-list a { white-space: nowrap; }
.project-link-unavailable {
  min-width: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
  white-space: normal;
}
.design-faq { padding-bottom: var(--section); }

/* Footer ---------------------------------------------------------------- */
.footer-simple { grid-template-columns: minmax(240px,1.35fr) auto minmax(220px,.9fr) auto; align-items: center; }
.footer-brand-block { display: grid; gap: 5px; }
.footer-tagline { color: var(--muted); }
.footer-social-list { flex-wrap: nowrap; margin-bottom: 0; }
.footer-social-list .social-link {
  width: 44px;
  height: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 0;
  border-color: var(--rule);
}
.footer-social-list .social-link:hover,
.footer-social-list .social-link:focus-visible { color: #fff; background: var(--ink); border-color: var(--ink); }
.footer-social-list .social-link:hover .social-icon-shell,
.footer-social-list .social-link:focus-visible .social-icon-shell { color: var(--ink); background: #fff; }
.footer-links { justify-self: start; }
.footer-copyright { color: var(--muted); text-align: right; }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .site-header::after { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-toggle { grid-column: 2; }
  .portfolio-grid { --portfolio-columns: 3; column-count: 3; }
  .footer-simple { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  :root { --gutter: 22px; --section: 78px; --header-offset: 109px; }
  body { font-size: 16px; }
  .site-header { min-height: 82px; padding-block: 12px; }
  .brand { width: min(205px,56vw); }
  .menu-toggle { top: 16px; }
  .menu-nav ul { gap: 8px 28px; }
  .menu-nav a { font-size: clamp(38px,6.2vw,52px); }
  .menu-nav a[href="/gallery/"] { font-size: clamp(34px,5.1vw,46px); }
  .menu-panel { padding-top: 116px; }
  .about-intro,
  .split-hero,
  .feature-row,
  .scene,
  .contact-studio,
  .salon-overview { grid-template-columns: 1fr; }
  .feature-row.feature-reverse .feature-media,
  .feature-row.feature-reverse .feature-copy,
  .scene:nth-child(even) .scene-media { order: initial; }
  .about-intro-media,
  .feature-copy,
  .scene-copy { width: min(620px,100%); max-width: none; }
  .information-grid,
  .information-grid.three-up,
  .design-project-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { --portfolio-columns: 2; column-count: 2; }
  .detail-nav { grid-template-columns: 1fr 1fr; }
  .detail-nav a:nth-child(2) { grid-column: 1 / -1; grid-row: 2; text-align: center; }
}

@media (max-width: 640px) {
  .menu-panel::before {
    position: fixed;
    z-index: 0;
    inset: 0 0 auto;
    height: 96px;
    pointer-events: none;
    background: linear-gradient(#080808 76%, rgba(8,8,8,0));
    content: "";
  }
  .menu-panel {
    grid-template-rows: auto auto;
    align-content: space-between;
    gap: 28px;
    padding-top: 108px;
  }
  .menu-brand,
  .menu-close { position: fixed; }
  .menu-nav { align-self: start; }
  .menu-nav ul { grid-template-columns: 1fr; gap: 2px; }
  .menu-nav li:last-child { grid-column: auto; justify-self: start; }
  .menu-nav a,
  .menu-nav a[href="/gallery/"] {
    min-block-size: 44px;
    font-size: clamp(34px, 10.4vw, 48px);
  }
  .menu-meta { display: block; padding-top: 16px; }
  .menu-meta nav { margin-bottom: 12px; }
}

@media (max-height: 500px) and (min-width: 641px) {
  .portfolio-controls { position: static; }
  .menu-panel::before {
    position: fixed;
    z-index: 0;
    inset: 0 0 auto;
    height: 76px;
    pointer-events: none;
    background: linear-gradient(#080808 72%, rgba(8,8,8,0));
    content: "";
  }
  .menu-panel {
    grid-template-rows: auto auto;
    align-content: space-between;
    gap: 16px;
    padding-top: 84px;
    padding-bottom: 18px;
  }
  .menu-brand,
  .menu-close { position: fixed; }
  .menu-brand { top: 14px; width: 150px; }
  .menu-close { top: 14px; }
  .menu-nav { align-self: start; }
  .menu-nav ul { gap: 4px 24px; }
  .menu-nav a { min-block-size: 44px; font-size: clamp(34px,5.5vw,44px); }
  .menu-nav a[href="/gallery/"] { font-size: clamp(31px,4.8vw,38px); }
  .menu-meta { padding-top: 10px; }
}

@media (max-width: 560px) {
  :root { --gutter: 16px; --section: 64px; --header-offset: 94px; }
  body { font-size: 16px; }
  .site-header { min-height: 74px; }
  .brand { width: 170px; }
  .menu-toggle { gap: 8px; font-size: 14px; }
  .menu-toggle::before { width: 17px; height: 12px; }
  .menu-toggle { top: 12px; right: 16px; }
  .menu-brand { top: 18px; left: 16px; width: 170px; }
  .menu-panel { padding: 104px 16px 28px; }
  h1 { font-size: clamp(44px,15vw,64px); }
  h2 { font-size: clamp(34px,11.5vw,48px); }
  .home-intro { padding-top: 58px; }
  .home-intro h1 { font-size: clamp(48px,15vw,62px); }
  .button-row,
  .request-actions { display: grid; grid-template-columns: 1fr; }
  .button-row .button,
  .request-actions .button { width: 100%; }
  .request-actions .text-link { grid-column: auto; }
  .information-grid,
  .information-grid.three-up,
  .design-project-grid { grid-template-columns: 1fr; }
  .portfolio-grid { --portfolio-columns: 1; --portfolio-gap: 22px; column-count: 1; }
  .portfolio-card { margin-bottom: 22px; }
  .portfolio-overlay { position: static; padding: 11px 0 0; color: var(--ink); background: #fff; opacity: 1; transform: none; }
  .portfolio-category { color: var(--muted); }
  .portfolio-link:hover .portfolio-image,
  .portfolio-link:focus-visible .portfolio-image { transform: none; opacity: 1; }
  .portfolio-controls { position: static; padding-top: 0; }
  .filter-buttons { justify-content: flex-start; column-gap: 18px; }
  .design-project,
  .design-project-group { grid-template-columns: 70px minmax(0,1fr); gap: 18px; }
  .design-project-media { width: 70px; }
  .cta-panel,
  .request-panel { padding: 34px 22px; }
  .footer-simple { grid-template-columns: 1fr; }
  .back-to-top span:last-child { display: none; }
}

@media (hover: none) and (min-width: 561px) {
  .portfolio-overlay { opacity: 1; transform: none; }
}

@media (hover: none) {
  .button:hover,
  .social-link:hover,
  .feature-row:hover .feature-image,
  .video-facade:hover img { transform: none; }
  .video-facade:hover img { opacity: .78; }
  a.design-project-media:hover {
    box-shadow: 0 1px 2px rgba(0,0,0,.18), 0 11px 25px rgba(0,0,0,.14);
    transform: 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; scroll-behavior: auto !important; }
}


@media (max-width: 1080px) {
  .footer-copyright { text-align: left; }
}

@media (max-width: 820px) {
  .design-project-grid { grid-template-columns: 1fr; }
  .design-project--wide { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  .social-link { min-height: 44px; }
  .menu-panel .social-icon-list { gap: 8px; }
  .menu-panel .social-link { padding-right: 10px; }
  .design-project--wide { padding: 24px 20px; }
  .design-icon-pair { grid-template-columns: repeat(2,70px); gap: 12px; }
  .footer-social-list { flex-wrap: wrap; }
  .footer-links, .footer-copyright { justify-self: start; text-align: left; }
}

@media print {
  .site-header, .site-footer, .menu-toggle, .back-to-top, .menu-panel, .button-row, .portfolio-controls { display: none !important; }
  body { color: #000; font-size: 11pt; }
  a { color: #000; text-decoration: underline; }
  .page-hero, .legal-page { padding-top: 0; }
}


/* Release 33.2: studio identity, history, provenance, and contact form ----- */
.salon-mark { width: min(340px, 78%); margin-top: 34px; }
.salon-mark img { width: 100%; height: auto; }

.about-history {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(330px,.92fr);
  align-items: center;
  gap: clamp(46px,7vw,94px);
  padding-bottom: var(--section);
}
.about-history-media { overflow: hidden; background: var(--soft); }
.about-history-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.about-history-copy { max-width: 560px; }
.history-note { color: var(--muted); font-family: var(--display); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }

.edition-visual-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(24px,3vw,44px); max-width: 920px; }
.edition-visual-card { min-width: 0; }
.edition-visual-media { display: grid; aspect-ratio: 1; overflow: hidden; place-items: center; background: var(--soft); }
.edition-visual-media img { width: 100%; height: 100%; object-fit: contain; }
.edition-visual-media--mark { padding: clamp(10px,1.5vw,22px); background: #f7f7f7; }
.edition-visual-card figcaption { padding-top: 22px; }
.edition-visual-card h3 { margin-bottom: 10px; font-size: clamp(27px,2.5vw,36px); }
.edition-record-note { max-width: 820px; padding-top: 34px; margin-bottom: 0; color: var(--muted); }

.contact-form-section { padding-bottom: var(--section); }
.contact-form-section > h2 { max-width: 700px; }
.contact-process { padding-bottom: var(--section); }
.contact-process > h2 { max-width: 700px; }
.contact-process-list {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  padding: 0;
  margin: 34px 0 0;
  counter-reset: contact-step;
  list-style: none;
}
.contact-process-list li {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--rule);
  counter-increment: contact-step;
}
.contact-process-list li::before {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  content: "0" counter(contact-step);
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .12em;
}
.contact-process-list strong,
.contact-process-list span { display: block; }
.contact-process-list strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.08;
}
.contact-form { padding-top: 22px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px 24px; }
.contact-form input,
.contact-form select,
.contact-form textarea { min-height: 50px; border-color: #696969; }
.contact-form textarea { min-height: 190px; }
.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"] { border-width: 2px; border-color: var(--error); }
.form-error-summary {
  padding: 18px 20px;
  margin: 0 0 24px;
  border: 2px solid var(--error);
  background: #fff7f5;
}
.form-error-summary:focus { outline: 3px solid var(--focus); outline-offset: 3px; }
.form-error-summary p { margin-bottom: 8px; }
.form-error-summary ul { margin-bottom: 0; }
.form-error-summary a { color: var(--error); font-weight: 700; }
.form-field-error {
  display: none;
  color: var(--error);
  font-size: 14px;
  font-weight: 700;
}
.form-field-error:not(:empty) { display: block; }
.form-confirmation { grid-template-columns: 22px minmax(0,1fr); align-items: start; gap: 12px; }
.form-confirmation input { width: 20px; min-height: 20px; margin-top: 4px; }
.form-confirmation .form-field-error { grid-column: 2; }
.form-hint { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.form-topic-status {
  padding: 14px 16px;
  margin: 4px 0 0;
  border-left: 4px solid var(--ink);
  background: var(--soft);
}
.form-topic-status[data-topic-selected="true"] { color: var(--ink); }
.form-character-count {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
}
.form-character-count.is-near-limit { color: var(--error); font-weight: 700; }
.contact-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 0;
}
.contact-submit-row .button[disabled] { cursor: wait; }
.contact-next-note,
.contact-recovery-options { margin-top: 34px; }
.contact-next-note h2,
.contact-recovery-options h2 { margin-bottom: 14px; font-size: clamp(28px,3.2vw,38px); }
.contact-next-note ol { margin-bottom: 0; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-status { padding-bottom: var(--section); }
.contact-status .form-message { margin: 28px 0; }
.contact-status .form-message p { margin-bottom: 0; }
.contact-status .form-message p + p { margin-top: .9em; }

@media (max-width: 820px) {
  .about-history { grid-template-columns: 1fr; }
  .about-history-copy { width: min(620px,100%); max-width: none; }
  .edition-visual-grid { grid-template-columns: 1fr; gap: 50px; }
  .edition-visual-card { width: min(620px,100%); }
  .contact-process-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .salon-mark { width: min(330px, 88%); margin-top: 28px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-process-list li { padding: 20px; }
  .contact-submit-row { display: grid; grid-template-columns: 1fr; }
  .contact-submit-row .button { width: 100%; }
}


/* Release 33.4.1: transparent full-size salon artwork and unified contact routing. */
.salon-cut-media {
  overflow: visible;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.salon-overview-media .salon-cut-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  transform: none;
}
.salon-overview-media:hover .salon-cut-image { transform: none; }


/* Sparrow Studios 34.0.1: consolidated website practice and service architecture */
.home-practices,
.union-section { padding-bottom: var(--section); }
.home-practices > header,
.union-section > header { max-width: 820px; margin-bottom: clamp(34px, 5vw, 58px); }
.home-practice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(26px, 3.2vw, 48px); }
.home-practice-grid article { padding-top: 22px; border-top: 1px solid var(--rule); }
.home-practice-grid h3 { font-size: clamp(26px, 2.4vw, 34px); }
.home-practice-grid p:last-child { margin-bottom: 0; }
.union-trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}
.union-trust-list li { padding: 16px 18px; border: 1px solid var(--rule); font-size: 14px; line-height: 1.4; }
.union-outcomes article { padding-top: 24px; border-top: 1px solid var(--rule); }
.union-process-list { counter-reset: union-process; padding: 0; list-style: none; }
.union-process-list li { position: relative; padding: 26px 0 26px 64px; border-top: 1px solid var(--rule); }
.union-process-list li::before {
  position: absolute;
  left: 0;
  top: 24px;
  counter-increment: union-process;
  content: counter(union-process, decimal-leading-zero);
  color: var(--muted);
  font-family: var(--display);
  font-size: 20px;
}
.union-process-list strong { display: block; margin-bottom: 5px; color: var(--ink); font-family: var(--display); font-size: 24px; font-weight: 400; }
.union-disclaimer { padding: 24px 28px; margin-top: 38px; background: var(--soft); color: var(--muted); font-size: 14px; }

@media (max-width: 1080px) {
  .home-practice-grid,
  .union-trust-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .home-practice-grid,
  .union-trust-list { grid-template-columns: 1fr; }
  .union-process-list li { padding-left: 48px; }
}
