:root {
  --color-ivory: #fffaf4;
  --color-cream: #f9eee4;
  --color-peach: #f3c6b5;
  --color-blush: #e9afa6;
  --color-rose: #b86f73;
  --color-burgundy: #542039;
  --color-plum: #35172d;
  --color-brown: #442f2c;
  --color-gold: #cda45d;
  --color-gold-light: #efd6a7;
  --color-white: #ffffff;
  --color-muted: #78645f;
  --color-border: rgba(84, 32, 57, 0.14);
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --header-height: 108px;
  --space-section: clamp(4.5rem, 10vw, 8rem);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 60px rgba(83, 40, 47, 0.11);
  --shadow-card: 0 18px 50px rgba(76, 35, 43, 0.14);
  --shadow-glow: 0 0 70px rgba(224, 152, 122, 0.32);
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 184, 160, 0.2), transparent 28rem),
    var(--color-ivory);
  color: var(--color-brown);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-plum);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.7rem);
}

h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

::selection {
  background: var(--color-peach);
  color: var(--color-plum);
}

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-plum);
  color: var(--color-white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--space-section);
}

.section--compact {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.section--tinted {
  background:
    radial-gradient(circle at 86% 16%, rgba(205, 164, 93, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(249, 223, 210, 0.72), rgba(255, 250, 244, 0.92));
}

.section-heading {
  max-width: 700px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--color-rose);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.display-accent {
  color: var(--color-rose);
  font-style: italic;
}

.lead {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--color-burgundy);
  box-shadow: 0 10px 30px rgba(84, 32, 57, 0.2);
  color: var(--color-white);
}

.button--primary:hover {
  background: var(--color-plum);
  box-shadow: 0 14px 34px rgba(84, 32, 57, 0.28);
}

.button--secondary {
  border-color: rgba(84, 32, 57, 0.32);
  background: rgba(255, 255, 255, 0.45);
  color: var(--color-burgundy);
}

.button--secondary:hover {
  border-color: var(--color-burgundy);
  background: var(--color-white);
}

.button--light {
  background: var(--color-white);
  color: var(--color-burgundy);
}

.button--text {
  min-height: auto;
  padding: 0.35rem 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--color-burgundy);
}

.button--text::after {
  content: "\2192";
  transition: transform 0.25s ease;
}

.button--text:hover {
  transform: none;
}

.button--text:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: relative;
  z-index: 900;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 244, 0.92);
  transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  background: rgba(255, 250, 244, 0.86);
  box-shadow: 0 8px 30px rgba(70, 42, 42, 0.07);
  backdrop-filter: blur(22px);
}

.site-header.is-hidden {
  transform: none;
}

.home-page .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  border-color: transparent;
  background: linear-gradient(180deg, rgba(35, 17, 29, 0.62), rgba(35, 17, 29, 0));
}

.header-inner {
  position: relative;
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  align-items: center;
  justify-self: center;
  gap: 0.78rem;
  color: var(--color-plum);
  line-height: 1.05;
}

.brand img {
  width: 86px;
  height: 86px;
  border: 1px solid rgba(205, 164, 93, 0.42);
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 50%;
  box-shadow: 0 10px 34px rgba(84, 32, 57, 0.17);
  mix-blend-mode: multiply;
}

.home-page .brand img {
  border-color: rgba(239, 214, 167, 0.62);
  background: var(--color-ivory);
  box-shadow: 0 10px 38px rgba(18, 8, 15, 0.32), 0 0 28px rgba(205, 164, 93, 0.16);
  mix-blend-mode: normal;
}

.brand-copy {
  display: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.brand-byline {
  color: var(--color-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 1;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 280px) 126px minmax(210px, 280px) minmax(0, 1fr);
  align-items: center;
}

.desktop-nav a {
  position: relative;
  grid-row: 1;
  padding-block: 0.45rem;
  color: var(--color-brown);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a:nth-child(1) {
  grid-column: 2;
  justify-self: start;
}

.desktop-nav a:nth-child(2) {
  grid-column: 2;
  justify-self: end;
}

.desktop-nav a:nth-child(3) {
  grid-column: 4;
  justify-self: start;
}

.desktop-nav a:nth-child(4) {
  grid-column: 4;
  justify-self: end;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-rose);
  content: "";
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: translateX(-50%) scaleX(1);
}

.home-page .desktop-nav a {
  color: rgba(255, 246, 237, 0.88);
  text-shadow: 0 2px 18px rgba(19, 8, 15, 0.34);
}

.home-page .desktop-nav a::after {
  background: var(--color-gold-light);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: var(--color-plum);
  cursor: pointer;
}

.menu-toggle-lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after,
.menu-toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before { top: 0; }
.menu-toggle-lines span { top: 6px; }
.menu-toggle-lines::after { bottom: 0; }

.menu-backdrop {
  position: fixed;
  z-index: 940;
  inset: 0;
  display: none;
  border: 0;
  background: rgba(40, 17, 31, 0.35);
  backdrop-filter: blur(4px);
}

.mobile-menu {
  position: fixed;
  z-index: 950;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(88vw, 410px);
  flex-direction: column;
  padding: 1.25rem clamp(1.5rem, 6vw, 2.5rem) 2.5rem;
  background:
    radial-gradient(circle at 90% 5%, rgba(205, 164, 93, 0.24), transparent 14rem),
    var(--color-ivory);
  box-shadow: -20px 0 70px rgba(53, 23, 45, 0.18);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.menu-backdrop.is-open {
  display: block;
}

.mobile-menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-brand img {
  width: 76px;
  height: 76px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 14%;
  mix-blend-mode: multiply;
}

.mobile-menu-brand strong {
  display: block;
  max-width: 235px;
  color: var(--color-plum);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-plum);
  cursor: pointer;
  font-size: 1.35rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.icon-button:hover {
  background: var(--color-white);
  transform: rotate(3deg);
}

.mobile-nav {
  display: grid;
  gap: 0.2rem;
  margin-top: clamp(3rem, 10vh, 6rem);
}

.mobile-nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-plum);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.25rem);
}

.mobile-nav a[aria-current="page"] {
  color: var(--color-rose);
}

.mobile-menu-contact {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.page-main {
  min-height: 70vh;
  padding-top: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(920px, 100svh);
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(2rem, 5vw, 4rem)) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 50% 29%, rgba(224, 160, 104, 0.28), transparent 12rem),
    radial-gradient(ellipse at 50% 34%, rgba(167, 88, 83, 0.5), transparent 34rem),
    radial-gradient(circle at 18% 75%, rgba(112, 57, 67, 0.38), transparent 30rem),
    linear-gradient(145deg, #28151f 0%, #623844 52%, #321c29 100%);
  color: rgba(255, 246, 237, 0.82);
}

.hero-background {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #28151f;
  isolation: isolate;
}

.hero-background::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 11, 18, 0.44) 0%, rgba(31, 16, 24, 0.04) 24%, rgba(31, 16, 24, 0.08) 58%, rgba(24, 12, 19, 0.72) 100%),
    radial-gradient(ellipse 70% 58% at 50% 38%, transparent 38%, rgba(37, 18, 28, 0.16) 68%, rgba(27, 13, 22, 0.45) 100%);
  content: "";
  pointer-events: none;
}

.hero-background-video,
.hero-background-fallback {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 1;
  object-fit: cover;
  object-position: center;
  visibility: visible;
}

.hero-background-video {
  display: block;
}

.hero-background-fallback {
  display: none;
}

.hero-background.is-fallback .hero-background-video {
  display: none;
}

.hero-background.is-fallback .hero-background-fallback {
  display: block;
}

.hero::before,
.hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: 1;
  top: 3%;
  left: 50%;
  width: min(88vw, 920px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(239, 190, 123, 0.22), rgba(201, 116, 94, 0.08) 42%, transparent 68%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.hero::after {
  z-index: 1;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(24, 12, 19, 0.28), transparent 19%, transparent 70%, rgba(27, 13, 22, 0.38)),
    radial-gradient(ellipse 76% 64% at 50% 31%, transparent 28%, rgba(53, 27, 38, 0.08) 56%, rgba(32, 16, 25, 0.36) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-gold-light);
  box-shadow: 0 0 18px 5px rgba(255, 222, 166, 0.45);
  opacity: 0.78;
}

.hero-particles span:nth-child(1) { top: 18%; left: 24%; }
.hero-particles span:nth-child(2) { top: 27%; left: 77%; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { top: 44%; left: 18%; width: 7px; height: 7px; }
.hero-particles span:nth-child(4) { top: 51%; left: 84%; width: 4px; height: 4px; }
.hero-particles span:nth-child(5) { top: 12%; left: 64%; width: 3px; height: 3px; }
.hero-particles span:nth-child(6) { top: 36%; left: 54%; width: 3px; height: 3px; }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 850px;
  margin-inline: auto;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0 auto 1.15rem;
  color: #fff5ec;
  font-size: clamp(2.75rem, 5.6vw, 5.1rem);
  text-shadow: 0 8px 36px rgba(25, 10, 19, 0.3);
}

.hero-copy .lead {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 240, 228, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-copy .eyebrow {
  color: var(--color-gold-light);
}

.hero-copy .eyebrow::before {
  display: none;
}

.hero-copy .button-row {
  justify-content: center;
  margin-top: 1.6rem;
}

.hero .button--primary {
  border-color: rgba(239, 214, 167, 0.26);
  background: #38172a;
  box-shadow: 0 12px 34px rgba(18, 7, 14, 0.26), 0 0 26px rgba(205, 164, 93, 0.08);
}

.hero .button--secondary {
  border-color: rgba(255, 240, 228, 0.42);
  background: rgba(255, 250, 244, 0.07);
  color: #fff5ec;
  backdrop-filter: blur(10px);
}

.hero .button--secondary:hover {
  border-color: rgba(239, 214, 167, 0.75);
  background: rgba(255, 250, 244, 0.14);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 1.5rem;
  left: 50%;
  display: grid;
  place-items: center;
  color: rgba(239, 214, 167, 0.7);
  font-size: 1.3rem;
  transform: translateX(-50%);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.split-layout--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media::before {
  position: absolute;
  z-index: -1;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 75%;
  height: 75%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-peach), var(--color-gold-light));
  content: "";
}

.split-media img {
  width: 100%;
  max-height: 720px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.split-content {
  max-width: 600px;
}

.split-content h2 {
  margin-bottom: 1.4rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.featured-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 241, 231, 0.72), transparent 25rem),
    radial-gradient(circle at 88% 82%, rgba(194, 113, 117, 0.18), transparent 29rem),
    linear-gradient(145deg, #f2d7d1 0%, #e9bebc 54%, #dda9ad 100%);
  color: #54313a;
}

.featured-section::before {
  position: absolute;
  top: 10%;
  left: 50%;
  width: min(78vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(116, 62, 73, 0.1);
  border-radius: 50%;
  box-shadow: inset 0 0 100px rgba(255, 245, 236, 0.2), 0 0 90px rgba(142, 75, 88, 0.08);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.featured-section .container {
  position: relative;
  z-index: 1;
}

.featured-section .section-heading {
  max-width: 760px;
}

.featured-section .section-heading h2 {
  margin-bottom: 1.1rem;
  color: #4b2933;
}

.featured-section .section-heading .eyebrow {
  color: #92535a;
}

.featured-section .section-heading .lead {
  margin-bottom: 0;
  color: rgba(75, 41, 51, 0.76);
}

.featured-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(110, 58, 69, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 244, 239, 0.76), rgba(234, 191, 190, 0.72));
  box-shadow: 0 24px 65px rgba(92, 46, 57, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.featured-card:hover {
  border-color: rgba(123, 65, 77, 0.3);
  box-shadow: 0 30px 75px rgba(92, 46, 57, 0.2), 0 0 46px rgba(184, 111, 115, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: translateY(-6px);
}

.featured-card-media {
  display: block;
  overflow: hidden;
}

.featured-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d8aaa9;
}

.featured-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(81, 39, 51, 0.14));
  content: "";
  pointer-events: none;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.featured-card:hover .featured-card-image img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.featured-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.featured-card-meta {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.featured-card-category {
  color: #8c4c53;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.featured-card-technique {
  color: rgba(76, 42, 51, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.featured-card-title {
  margin-bottom: 0.85rem;
  color: #4b2933;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.featured-card-description {
  margin-bottom: 1.6rem;
  color: rgba(75, 41, 51, 0.75);
  font-size: 0.93rem;
  line-height: 1.7;
}

.featured-card-cta {
  min-height: 46px;
  margin-top: auto;
  border-color: rgba(111, 57, 69, 0.3);
  background: rgba(255, 247, 242, 0.42);
  color: #5a303b;
}

.featured-card-cta:hover {
  border-color: rgba(111, 57, 69, 0.58);
  background: rgba(255, 247, 242, 0.7);
}

.art-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 36px rgba(76, 35, 43, 0.08);
  color: var(--color-plum);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

/* Keep these one-line-title cards top-aligned inside their stretched grid rows. */
.art-card:is(
  [data-artwork-id="AID-001"],
  [data-artwork-id="AID-002"],
  [data-artwork-id="AID-008"],
  [data-artwork-id="AID-009"],
  [data-artwork-id="AID-011"]
) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.gallery-grid .art-card[hidden] {
  display: none;
}

.art-card:hover {
  border-color: rgba(184, 111, 115, 0.35);
  box-shadow: var(--shadow-card), 0 0 50px rgba(231, 161, 144, 0.14);
  transform: translateY(-6px);
}

.art-card-image {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f3ece6, #fffdf9);
}

.art-card-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keep the complete artwork visible in the few portrait-oriented gallery photos. */
.art-card[data-artwork-id="AID-002"] .art-card-image img {
  object-position: 50% 32%;
}

.art-card[data-artwork-id="AID-003"] .art-card-image img {
  object-position: 50% 100%;
}

.art-card[data-artwork-id="AID-017"] .art-card-image img {
  object-position: 50% 60%;
}

.art-card:hover .art-card-image img {
  transform: scale(1.035);
}

.art-card-title {
  margin: 0;
  padding: 1.15rem 1.25rem 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

button.art-card {
  width: 100%;
  padding: 0;
  border: 1px solid var(--color-border);
  cursor: pointer;
  text-align: left;
}

.phrase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 214, 167, 0.22), transparent 22rem),
    radial-gradient(circle at 85% 85%, rgba(231, 159, 143, 0.16), transparent 24rem),
    var(--color-plum);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.phrase-section::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(239, 214, 167, 0.15);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.phrase-inner {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-inline: auto;
}

.phrase-section h2 {
  color: var(--color-white);
}

.phrase-section .eyebrow {
  color: var(--color-gold-light);
}

/* Static SVG atmosphere used only on Home, Gallery and Artist sections. */
.has-mandala-decor {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.has-mandala-decor > .container {
  position: relative;
  z-index: 1;
}

.mandala-decor {
  position: absolute;
  z-index: 0;
  width: var(--mandala-size, 18rem);
  pointer-events: none;
  user-select: none;
}

.mandala-decor img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.12) contrast(1.04);
  opacity: var(--mandala-opacity, 0.12);
  transform: rotate(var(--mandala-rotation, 0deg));
  transform-origin: center;
}

.mandala-decor--on-dark img {
  filter: brightness(1.45) saturate(1.18) drop-shadow(0 0 18px rgba(239, 214, 167, 0.24));
  mix-blend-mode: screen;
}

.mandala-decor--home-welcome {
  top: 2rem;
  right: 5rem;
  --mandala-size: 12.5rem;
  --mandala-opacity: 0.21;
  --mandala-rotation: 14deg;
}

.mandala-decor--home-featured {
  right: 3.5rem;
  bottom: -5rem;
  --mandala-size: 15rem;
  --mandala-opacity: 0.2;
  --mandala-rotation: -12deg;
}

.mandala-decor--home-phrase,
.mandala-decor--artist-phrase {
  bottom: -4rem;
  left: 2.5rem;
  --mandala-size: 15rem;
  --mandala-opacity: 0.5;
  --mandala-rotation: -8deg;
}

.mandala-decor--gallery-hero {
  top: 3rem;
  right: 3rem;
  --mandala-size: 16rem;
  --mandala-opacity: 0.22;
  --mandala-rotation: 11deg;
}

.mandala-decor--gallery-space {
  top: 2rem;
  left: 4rem;
  --mandala-size: 11rem;
  --mandala-opacity: 0.25;
  --mandala-rotation: -9deg;
}

.mandala-decor--gallery-cta {
  right: 5rem;
  bottom: -7.5rem;
  --mandala-size: 15rem;
  --mandala-opacity: 0.52;
  --mandala-rotation: 10deg;
}

.mandala-decor--artist-hero {
  top: 2.5rem;
  right: 3.5rem;
  --mandala-size: 15rem;
  --mandala-opacity: 0.22;
  --mandala-rotation: 8deg;
}

.mandala-decor--artist-story {
  top: 2rem;
  right: 5rem;
  --mandala-size: 12.5rem;
  --mandala-opacity: 0.2;
  --mandala-rotation: 16deg;
}

.mandala-decor--artist-process {
  top: 2rem;
  right: 3rem;
  --mandala-size: 15rem;
  --mandala-opacity: 0.22;
  --mandala-rotation: -10deg;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 12vw, 9rem) clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(205, 164, 93, 0.22), transparent 20rem),
    linear-gradient(135deg, #fff8f2, #f4cdc0 68%, #e2aaa5);
}

.page-hero::after {
  position: absolute;
  right: -10vw;
  bottom: -28vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(84, 32, 57, 0.1);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.page-hero p {
  max-width: 680px;
  margin-bottom: 0;
}

.page-hero .gallery-artisan-note {
  max-width: 760px;
  margin-top: clamp(1.35rem, 3vw, 2rem);
  padding-left: clamp(1rem, 2vw, 1.4rem);
  border-left: 1px solid rgba(84, 32, 57, 0.28);
  color: var(--color-burgundy);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  font-style: italic;
  line-height: 1.65;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 4vw, 4rem);
}

.gallery-toolbar {
  position: sticky;
  z-index: 20;
  top: calc(var(--header-height) + 1.25rem);
  max-height: calc(100svh - var(--header-height) - 2.5rem);
  overflow-y: auto;
}

.gallery-filters {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem;
  border: 1px solid rgba(239, 214, 167, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(84, 32, 57, 0.92), rgba(113, 56, 78, 0.84));
  box-shadow: 0 18px 45px rgba(74, 36, 43, 0.16);
  backdrop-filter: blur(16px);
}

.gallery-filter-mobile {
  display: none;
}

.gallery-content {
  min-width: 0;
}

.filter-button {
  width: 100%;
  min-height: 42px;
  padding: 0.7rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 0.85rem;
  background: transparent;
  color: rgba(255, 246, 237, 0.72);
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.filter-button:hover,
.filter-button[aria-pressed="true"] {
  background: rgba(255, 250, 244, 0.12);
  box-shadow: inset 3px 0 0 var(--color-gold-light);
  color: #fff8f1;
  transform: translateX(2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.gallery-message {
  grid-column: 1 / -1;
  padding: 3rem 1rem;
  color: var(--color-muted);
  text-align: center;
}

.gallery-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  isolation: isolate;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--color-burgundy), #71384e);
  box-shadow: var(--shadow-card);
  color: rgba(255, 255, 255, 0.82);
}

.gallery-cta > :not(.mandala-decor) {
  position: relative;
  z-index: 1;
}

.gallery-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.art-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  padding: clamp(0.5rem, 2vw, 1.5rem);
  background: rgba(35, 16, 29, 0.68);
  opacity: 0;
  overflow-y: auto;
  place-items: center;
  visibility: hidden;
  backdrop-filter: blur(9px);
  transition: opacity 0.3s ease, visibility 0.3s;
}

.art-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.art-modal-dialog {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  max-height: calc(100svh - clamp(1rem, 4vw, 3rem));
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-md);
  background: var(--color-ivory);
  box-shadow: 0 30px 100px rgba(35, 16, 29, 0.35);
  transform: translateY(18px) scale(0.985);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.art-modal.is-open .art-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 0.85rem;
  right: 0.85rem;
}

.modal-gallery {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  background: #eee8e2;
}

.modal-main-image-wrap {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 1;
  place-items: center;
  overflow: hidden;
}

.modal-main-image-button {
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.modal-main-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100svh - 190px);
  object-fit: contain;
}

@media (hover: hover) and (pointer: fine) {
  .modal-main-image {
    transform: scale(1);
    transform-origin: var(--modal-zoom-origin-x, 50%) var(--modal-zoom-origin-y, 50%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .modal-main-image-button.is-hover-zoomed {
    cursor: zoom-out;
  }

  .modal-main-image-button.is-hover-zoomed .modal-main-image {
    transform: scale(1.8);
  }
}

.modal-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.modal-arrow:hover {
  transform: translateY(-50%);
}

.modal-arrow--prev { left: 0.8rem; }
.modal-arrow--next { right: 0.8rem; }

.modal-thumbnails {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.75rem;
  border-top: 1px solid rgba(84, 32, 57, 0.08);
  background: rgba(255, 250, 244, 0.86);
}

.modal-thumbnail {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--color-white);
  cursor: pointer;
}

.modal-thumbnail.is-active {
  border-color: var(--color-rose);
}

.modal-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  overflow-y: auto;
  padding: clamp(3.8rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3.25rem) 2.5rem;
}

.modal-code {
  margin-bottom: 0.55rem;
  color: var(--color-rose);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-title {
  margin-bottom: 1.35rem;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.modal-description {
  color: var(--color-muted);
}

.modal-details {
  display: grid;
  gap: 0;
  margin: 1.75rem 0;
  border-top: 1px solid var(--color-border);
}

.modal-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--color-border);
}

.modal-detail dt {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.modal-detail dd {
  margin: 0;
  color: var(--color-brown);
  font-size: 0.92rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.zoom-viewer {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  padding: 1rem;
  background: rgba(13, 8, 12, 0.96);
  opacity: 0;
  place-items: center;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.zoom-viewer.is-open {
  opacity: 1;
  visibility: visible;
}

.zoom-viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.zoom-close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  counter-reset: process;
}

.process-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 34px rgba(73, 40, 45, 0.07);
  counter-increment: process;
}

.process-card::before {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--color-gold);
  content: "0" counter(process);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.process-card p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.portrait-collage {
  position: relative;
  min-height: 650px;
}

.portrait-collage img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.portrait-collage img:first-child {
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
}

.portrait-collage img:last-child {
  right: 0;
  bottom: 0;
  width: 52%;
  height: 48%;
  border: 8px solid var(--color-ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 6rem);
}

.contact-aside {
  align-self: start;
}

.contact-aside img {
  width: 100%;
  max-height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.contact-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-burgundy);
}

.contact-list a::after {
  content: "\2197";
}

.response-time {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--color-gold);
  background: rgba(239, 214, 167, 0.18);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-form-wrap {
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.contact-form-wrap h2 {
  margin-bottom: 0.8rem;
}

.form-note {
  margin-bottom: 2rem;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.form-botcheck {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-status {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.55;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  border-color: rgba(91, 111, 75, 0.35);
  background: rgba(91, 111, 75, 0.1);
  color: #46553b;
}

.form-status.is-error {
  border-color: rgba(184, 111, 115, 0.4);
  background: rgba(184, 111, 115, 0.1);
  color: var(--color-burgundy);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.form-field legend {
  color: var(--color-brown);
  font-size: 0.82rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 51px;
  border: 1px solid rgba(84, 32, 57, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 250, 244, 0.8);
  color: var(--color-brown);
  padding: 0.78rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-rose);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(184, 111, 115, 0.12);
  outline: none;
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  align-items: flex-start;
  gap: 0.75rem;
  margin-block: 0.4rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--color-burgundy);
}

.checkbox-field label {
  color: var(--color-muted);
  font-size: 0.87rem;
}

.checkbox-field a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 7rem);
}

.legal-note {
  position: sticky;
  top: 2rem;
  padding: 1.25rem;
  border: 1px solid rgba(205, 164, 93, 0.38);
  border-radius: var(--radius-md);
  background: rgba(239, 214, 167, 0.16);
  color: var(--color-muted);
  font-size: 0.88rem;
}

.legal-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content a {
  color: var(--color-burgundy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.not-found-inner {
  max-width: 720px;
}

.not-found-logo {
  width: clamp(150px, 25vw, 240px);
  aspect-ratio: 1;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.not-found-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.not-found-code {
  margin-bottom: 0.4rem;
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: #f5e9df;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: clamp(2rem, 7vw, 6rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.footer-brand img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.footer-column h2 {
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  width: fit-content;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--color-burgundy);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.cookie-banner {
  position: fixed;
  z-index: 1900;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  width: min(calc(100% - 2rem), 780px);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
  padding: 1rem 1.1rem 1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  background: rgba(53, 23, 45, 0.96);
  box-shadow: 0 20px 70px rgba(40, 15, 32, 0.3);
  color: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--color-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.55rem;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.76rem;
}

.cookie-actions .button--secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 88px;
  }

  .mandala-decor {
    display: none;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-copy {
    display: none;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .home-page .menu-toggle {
    border-color: rgba(239, 214, 167, 0.38);
    background: rgba(40, 18, 31, 0.48);
    color: #fff5ec;
    backdrop-filter: blur(12px);
  }

  .hero {
    min-height: max(780px, 100svh);
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .hero-copy,
  .hero-copy .lead {
    margin-inline: auto;
  }

  .hero-copy .button-row {
    justify-content: center;
  }

  .hero-copy .eyebrow::before {
    display: none;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .gallery-toolbar {
    top: calc(var(--header-height) + 0.5rem);
    max-height: none;
    margin-bottom: 2.5rem;
    overflow: visible;
  }

  .gallery-filters {
    display: none;
  }

  .gallery-filter-mobile {
    display: grid;
    gap: 0.55rem;
  }

  .gallery-filter-mobile label {
    color: var(--color-burgundy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .gallery-filter-select-wrap {
    position: relative;
  }

  .gallery-filter-select-wrap::after {
    position: absolute;
    top: 50%;
    right: 1.15rem;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid var(--color-burgundy);
    border-bottom: 2px solid var(--color-burgundy);
    content: "";
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
  }

  .gallery-filter-select {
    width: 100%;
    min-height: 52px;
    appearance: none;
    border: 1px solid rgba(84, 32, 57, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 12px 35px rgba(74, 36, 43, 0.08);
    color: var(--color-plum);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0.78rem 3rem 0.78rem 1rem;
  }

  .gallery-filter-select:focus {
    border-color: var(--color-rose);
    box-shadow: 0 0 0 4px rgba(184, 111, 115, 0.12), 0 12px 35px rgba(74, 36, 43, 0.08);
    outline: none;
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .split-media {
    order: 0;
  }

  .split-content {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .art-card-image {
    display: flex;
    aspect-ratio: 4 / 5;
    align-items: center;
    justify-content: center;
  }

  .art-card-image.has-image-backdrop::before {
    position: absolute;
    inset: -8%;
    z-index: 0;
    background-image: var(--art-card-backdrop, none);
    background-position: center;
    background-size: cover;
    content: "";
    filter: blur(18px) saturate(0.82);
    opacity: 0.2;
    transform: scale(1.12);
  }

  .art-card[data-artwork-id] .art-card-image img {
    object-fit: contain;
    object-position: center center;
  }

  .art-card:hover .art-card-image img {
    transform: none;
  }

  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .art-modal-dialog {
    max-height: none;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .art-modal {
    align-items: start;
  }

  .modal-main-image-button {
    height: min(64svh, 620px);
    min-height: 360px;
  }

  .modal-main-image {
    max-height: none;
  }

  .modal-content {
    overflow: visible;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .portrait-collage {
    min-height: 590px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-note {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding-block: clamp(4rem, 16vw, 5.5rem);
  }

  .hero {
    min-height: max(700px, 100svh);
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .hero-scroll {
    display: none;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .featured-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-toolbar {
    top: calc(var(--header-height) + 0.4rem);
  }

  .gallery-filters {
    border-radius: var(--radius-md);
  }

  .art-card-title {
    padding: 1rem 1.05rem 1.15rem;
  }

  .modal-main-image-button {
    height: 52svh;
    min-height: 280px;
  }

  .modal-thumbnails {
    justify-content: flex-start;
  }

  .modal-detail {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .button {
    width: 100%;
  }

  .portrait-collage {
    display: grid;
    min-height: auto;
    gap: 1rem;
  }

  .portrait-collage img,
  .portrait-collage img:first-child,
  .portrait-collage img:last-child {
    position: static;
    width: 100%;
    height: auto;
    border: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full,
  .checkbox-field {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-background-video {
    display: none;
  }

  .hero-background-fallback {
    display: block;
  }
}
