:root {
  --ink: #211d19;
  --soft-ink: #4d443d;
  --muted: #776b60;
  --paper: #f5efe6;
  --paper-deep: #ebe0d2;
  --chalk: #fffaf3;
  --stone: #d9cec0;
  --olive: #6c725d;
  --terracotta: #a95f46;
  --charcoal: #171512;
  --line: rgba(33, 29, 25, .15);
  --line-light: rgba(255, 250, 243, .2);
  --shadow: 0 26px 70px rgba(33, 29, 25, .14);
  --max: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 250, 243, .9), rgba(235, 224, 210, .66)),
    repeating-linear-gradient(90deg, rgba(33, 29, 25, .025) 0, rgba(33, 29, 25, .025) 1px, transparent 1px, transparent 4px);
}

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

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

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

code {
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, .6);
  font-size: .88em;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 50;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--ink);
  color: var(--chalk);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(33, 29, 25, .09);
  background: rgba(245, 239, 230, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(33, 29, 25, .52);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: .02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .5);
}

.language-switcher button {
  min-width: 38px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--ink);
  color: var(--chalk);
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta);
}

.nav-cta {
  padding: 10px 18px !important;
  border: 1px solid rgba(33, 29, 25, .62);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, .62);
  color: var(--ink);
  padding: 10px 16px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 120px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 84px);
}

.hero-copy {
  max-width: 850px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1,
h2 {
  line-height: .98;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(54px, 8vw, 118px);
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--chalk);
  font-weight: 720;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--chalk);
}

.hero-art {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .55);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-art figcaption {
  max-width: 400px;
  margin: 14px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.statement-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 250, 243, .38);
}

.statement-band p {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 72px);
  color: var(--soft-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.18;
}

.section,
.split-section,
.contact {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .55fr);
  gap: clamp(26px, 5vw, 78px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading > *,
.split-section > *,
.contact > * {
  min-width: 0;
}

.section-heading h2,
.split-copy h2,
.contact h2 {
  font-size: clamp(42px, 5.8vw, 86px);
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
}

.art-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .58);
  box-shadow: 0 20px 54px rgba(33, 29, 25, .08);
}

.art-card-wide {
  grid-column: span 2;
}

.art-image-link {
  display: block;
  background: var(--paper-deep);
}

.art-image-button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: var(--paper-deep);
  color: inherit;
  padding: 0;
  text-align: inherit;
  cursor: pointer;
}

.art-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease;
}

.art-card-wide img {
  aspect-ratio: 16 / 9;
}

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

.art-card-content {
  padding: clamp(20px, 2.2vw, 30px);
}

.art-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}

.art-card h3 {
  color: var(--ink);
  font-size: clamp(27px, 2.3vw, 36px);
  line-height: 1.08;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(108, 114, 93, .36);
  border-radius: 999px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}

.art-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0 16px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
}

.art-meta div {
  min-width: 0;
}

.art-meta dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.art-meta dd {
  margin: 0;
  color: var(--soft-ink);
  font-weight: 650;
}

.art-card p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--ink);
  font-weight: 760;
}

.text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width .18s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 48px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.split-section.about {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .76fr);
}

.split-media {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .58);
  padding: 12px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: clamp(540px, 58vw, 720px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-copy {
  max-width: 730px;
}

.split-copy h2 {
  margin-bottom: 24px;
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0;
}

.process-list article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .46);
}

.process-list span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.artist-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: end;
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(33, 29, 25, .16);
  background:
    linear-gradient(180deg, rgba(33, 29, 25, .04), rgba(33, 29, 25, .22)),
    linear-gradient(135deg, #d6c1ac, #f4eadf 45%, #b9b39b);
  box-shadow: var(--shadow);
}

.artist-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-panel.has-image::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(33, 29, 25, .55));
}

.artist-panel figcaption {
  position: relative;
  max-width: 340px;
  padding-top: 260px;
}

.artist-panel p {
  margin: 0;
  color: rgba(33, 29, 25, .7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.18;
}

.artist-panel.has-image p {
  color: rgba(255, 250, 243, .88);
}

.artist-panel.has-image .eyebrow {
  color: #dfaa8f;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
  max-width: none;
  background: var(--charcoal);
  color: var(--chalk);
}

.contact > * {
  max-width: 690px;
}

.contact .eyebrow {
  color: #dfaa8f;
}

.contact-copy {
  justify-self: end;
}

.contact-copy p {
  color: rgba(255, 250, 243, .74);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 250, 243, .9);
  font-size: 18px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: #dfaa8f;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 243, .07);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 243, .78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 243, .2);
  border-radius: 0;
  background: rgba(255, 250, 243, .06);
  color: var(--chalk);
  padding: 13px 14px;
  outline: none;
  text-transform: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 250, 243, .6);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  width: max-content;
  min-width: 180px;
  margin-top: 8px;
  background: var(--chalk);
  color: var(--ink);
  border-color: var(--chalk);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero,
  .section-heading,
  .split-section,
  .split-section.about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split-copy,
  .contact > *,
  .contact-copy {
    max-width: none;
    justify-self: stretch;
  }

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

  .art-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--chalk);
    box-shadow: 0 18px 42px rgba(33, 29, 25, .13);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .language-switcher {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  .art-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .art-card-wide {
    grid-column: auto;
  }

  .art-card-wide img {
    aspect-ratio: 4 / 3;
  }

  .art-title-row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 19px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero,
  .section,
  .split-section,
  .contact {
    padding-inline: 16px;
  }

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

  .section-heading h2,
  .split-copy h2,
  .contact h2 {
    font-size: clamp(38px, 13vw, 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
