:root {
  --header-height: 96px;
  --color-blue: #01a8e1;
  --color-green: #8bbd20;
  --color-orange: #bf5420;
  --color-offwhite: #f4efe8;
  --color-charcoal: #171716;
  --color-dark: #121212;
  --color-sand: #e9dfd2;
  --color-border: rgba(23, 23, 22, 0.12);
  --color-card: rgba(255, 255, 255, 0.7);
  --shadow-soft: 0 24px 56px rgba(18, 18, 18, 0.12);
  --container: min(1260px, calc(100% - 36px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-offwhite);
  color: var(--color-charcoal);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(23, 23, 22, 0.12);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

main {
  display: block;
  position: relative;
  isolation: isolate;
}

.decorative-lines {
  position: absolute;
  inset: 760px 0 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(var(--line-shift-x, 0px), 0, 0);
  will-change: transform;
}

.decorative-line {
  position: absolute;
  width: 165vw;
  height: 240px;
  border: 0 solid currentColor;
  border-top: 5px solid currentColor;
  border-radius: 52% 48% 0 0 / 72% 62% 0 0;
  opacity: 0.36;
}

.decorative-line--orange {
  top: 12%;
  left: -20%;
  color: var(--color-orange);
  transform: rotate(-18deg);
}

.decorative-line--green {
  top: 38%;
  right: -24%;
  color: var(--color-green);
  transform: rotate(28deg);
}

.decorative-line--blue {
  top: 66%;
  left: 28%;
  color: var(--color-blue);
  transform: rotate(-34deg);
}

.brand-mark {
  position: fixed;
  top: 16px;
  left: 22px;
  z-index: 40;
  width: auto;
  height: 64px;
  display: block;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.brand-mark img {
  width: auto;
  height: 100%;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.menu-toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(13, 13, 13, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.94);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--color-charcoal);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  opacity: 0;
  pointer-events: none;
  background: rgba(191, 84, 32, 0.96);
  transition: opacity 0.28s ease;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}

.menu-overlay__brand {
  font-size: clamp(1.1rem, 1.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-offwhite);
}

.menu-close {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.26);
  background: transparent;
  color: var(--color-offwhite);
  font-size: 2.5rem;
  cursor: pointer;
}

.menu-nav {
  display: grid;
  gap: 1.1rem;
  padding-top: 3.2rem;
}

.menu-nav a {
  display: block;
  padding: 0.2rem 0;
  color: var(--color-offwhite);
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--color-charcoal);
  transform: translateX(8px);
}

.menu-meta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.menu-meta a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--color-orange);
  padding-top: var(--header-height);
}

.hero-visual {
  position: absolute;
  inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center center;
  transform: scale(1.08);
  opacity: 0.92;
  filter: saturate(1.15);
}

.hero-inner {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}

.hero-copy {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(72vw, 620px);
  height: auto;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-orange);
}

.eyebrow--light {
  color: var(--color-offwhite);
}

.hero-copy h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-family: Georgia, "Times New Roman", serif;
  color: #fff9f3;
  text-transform: none;
  max-width: 520px;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.78rem 1.5rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--primary {
  background: var(--color-green);
  color: #fff;
}

.button--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--color-offwhite);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  justify-content: center;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.feature-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #f7f2ec;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.feature-grid,
.artists-section,
.about-section,
.contact-cta {
  position: relative;
  z-index: 1;
}

.home-page .about-section {
  background: var(--color-offwhite);
}

.about-page {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - var(--header-height));
  padding-left: max(18px, calc((100% - 1260px) / 2 + 18px));
  padding-right: max(18px, calc((100% - 1260px) / 2 + 18px));
  background: var(--color-green);
}

.contact-page {
  width: 100%;
  max-width: none;
  min-height: calc(100vh - var(--header-height));
  padding-left: max(18px, calc((100% - 1260px) / 2 + 18px));
  padding-right: max(18px, calc((100% - 1260px) / 2 + 18px));
  background: var(--color-blue);
}

.about-page .page-hero h1,
.about-page .page-hero .eyebrow,
.contact-page .page-hero h1,
.contact-page .page-hero .eyebrow {
  color: #fff;
}

.contact-information {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
  min-height: 42vh;
  padding: clamp(2rem, 5vw, 5rem) 0 clamp(3rem, 8vw, 8rem);
  color: #fff;
}

.contact-information__label {
  padding-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.contact-information__details {
  display: grid;
  gap: 0.8rem;
}

.contact-information__details h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-information__details a,
.contact-information__details span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.contact-information__details a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.25rem;
  transition: transform 0.2s ease, color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-information__details a:hover,
.contact-information__details a:focus-visible {
  color: var(--color-green);
  text-decoration-color: currentColor;
  transform: translateX(6px);
}

.feature-card--dark {
  background: var(--color-charcoal);
}

.feature-header {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 100%;
  padding: 1.1rem 1.2rem 3rem;
  background: linear-gradient(180deg, rgba(20,20,20,0.26), rgba(20,20,20,0));
}

.feature-header span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-offwhite);
}

.feature-media {
  position: relative;
  height: 100%;
  min-height: 560px;
}

.feature-empty {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--color-charcoal);
  color: var(--color-offwhite);
  text-align: center;
  letter-spacing: 0.16em;
}

.feature-card--dark .feature-media {
  background: var(--color-charcoal);
}

.feature-media--news {
  height: 100%;
  min-height: 560px;
}

.feature-media--news img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-news-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.2rem 1.2rem 1.5rem;
  background: linear-gradient(180deg, rgba(23,23,22,0), rgba(23,23,22,0.85));
}

.feature-news-caption h3 {
  margin: 0;
  color: var(--color-offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.feature-card--dark .slide {
  object-position: center center;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,22,0.15), rgba(23,23,22,0.34));
}

.artists-section,
.news-section,
.about-section,
.social-section,
.contact-cta {
  padding-top: 5rem;
}

.section-heading {
  margin-bottom: 1.8rem;
}

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

.artist-card {
  position: relative;
  display: block;
  background: rgba(255,255,255,0.55);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.artist-card:hover,
.artist-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(1, 168, 225, 0.4);
}

.artist-image {
  aspect-ratio: 1;
  height: auto;
  overflow: hidden;
  background: #dbdddb;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.artist-card:hover .artist-image img,
.artist-card:focus-visible .artist-image img {
  transform: scale(1.06);
}

.artist-card__body {
  position: relative;
  padding: 1rem 1.1rem 1.2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0.82));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (min-width: 768px) {
  .artist-card__body {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    background: linear-gradient(180deg, transparent, rgba(23, 23, 22, 0.88));
    color: #fff;
  }

  .artist-card:hover .artist-card__body,
  .artist-card:focus-visible .artist-card__body {
    opacity: 1;
    transform: translateY(0);
  }

  .artist-card:hover .artist-type,
  .artist-card:focus-visible .artist-type {
    color: var(--color-offwhite);
  }
}

.artist-type {
  color: var(--color-orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.artist-card__body h3 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.05em;
}

.coming-soon-panel {
  min-height: 56vh;
  display: grid;
  place-items: center;
  padding: 3rem;
  background: var(--color-offwhite);
  color: var(--color-orange);
  font-size: clamp(2rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

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

.news-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.news-card--accent {
  background: var(--color-orange);
  color: #fff;
}

.news-card--dark {
  background: var(--color-charcoal);
  color: #fff;
}

.news-card--dark .news-meta,
.news-card--dark p,
.news-card--dark a {
  color: rgba(255,255,255,0.82);
}

.news-image {
  height: 260px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 0.8rem;
}

.news-card h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-family: Georgia, "Times New Roman", serif;
}

.news-card p {
  margin: 0 0 0.8rem;
  color: rgba(23,23,22,0.75);
}

.news-card a {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.2rem;
}

.home-page .about-layout {
  grid-template-columns: 1fr;
}

.about-copy {
  padding: 2rem 2.2rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  font-size: 1.08rem;
}

.about-copy p {
  margin: 0 0 1rem;
}

.about-panel {
  padding: 2rem 2.2rem;
  background: var(--color-orange);
  color: #fff;
}

.about-panel h3 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  font-family: Georgia, "Times New Roman", serif;
}

.about-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.9);
}

.about-link {
  margin-top: 1.5rem;
}

.contact-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  background: rgba(191, 84, 32, 0.96);
  color: #fff;
}

.contact-cta__box h2 {
  margin: 0.7rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-cta__box .eyebrow--contact {
  color: #fff;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 58px;
  padding: 0.8rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
}

.site-footer {
  background: var(--color-charcoal);
  color: #fff;
  margin-top: 5rem;
  padding: 2.75rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(260px, 1.4fr) minmax(220px, 1fr);
  align-items: start;
  gap: 2rem;
}

.footer-contact {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.footer-contact strong {
  margin-bottom: 0.35rem;
  color: var(--color-offwhite);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-contact a {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.2rem;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-green);
  text-decoration-color: currentColor;
}

.footer-copyright {
  grid-column: 2 / -1;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.artist-card__body p {
  margin: 0.35rem 0 0;
  color: rgba(23, 23, 22, 0.68);
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(140px, 0.7fr) minmax(260px, 1.4fr) minmax(220px, 1fr);
  align-items: start;
  gap: 2rem;
}

.footer-brand {
  width: min(220px, 36vw);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-content {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.page-hero {
  padding-bottom: 1rem;
}

.page-hero h1 {
  margin: 0.6rem 0 0;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-family: Georgia, "Times New Roman", serif;
}

.page-intro {
  max-width: 760px;
  margin: 0 0 1.6rem;
  color: rgba(23,23,22,0.8);
  font-size: 1.1rem;
}

.text-block {
  padding: clamp(1.4rem, 2vw, 2rem);
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--color-border);
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(280px, 35%) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.artist-profile__image {
  overflow: hidden;
  background: var(--color-charcoal);
  box-shadow: var(--shadow-soft);
}

.artist-profile__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.artist-profile__content {
  padding: clamp(1.4rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--color-border);
}

.artist-profile__content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-family: Georgia, "Times New Roman", serif;
}

.artist-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.prose {
  max-width: 900px;
}

.prose h2,
.prose h3,
.prose h4 {
  margin-top: 0;
  letter-spacing: -0.04em;
}

.prose ul {
  padding-left: 1.1rem;
  color: rgba(23,23,22,0.8);
}

.artist-list,
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-card__body {
  padding: 1rem 1.1rem 1.3rem;
}

.project-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
}

.contact-details,
.contact-form-panel {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(23,23,22,0.75);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23,23,22,0.18);
  background: #fff;
  color: var(--color-charcoal);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(1, 168, 225, 0.2);
  border-color: var(--color-blue);
}

.field-error {
  min-height: 1em;
  color: var(--color-orange);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .feature-grid,
  .artist-grid,
  .news-grid,
  .about-layout,
  .artist-list,
  .project-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .container {
    width: calc(100% - 32px);
  }

  .brand-mark {
    top: 12px;
    left: 12px;
    height: 52px;
  }

  .menu-toggle {
    top: 13px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .hero-section,
  .hero-inner {
    min-height: 640px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-logo {
    width: min(84vw, 460px);
  }

  .hero-copy p {
    max-width: 30rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 18rem);
    margin-left: auto;
    margin-right: auto;
  }

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

  .decorative-lines {
    transform: translate3d(calc(var(--line-shift-x, 0px) * 0.35), 0, 0);
    opacity: 0.65;
  }

  .artist-profile {
    grid-template-columns: 1fr;
  }

  .artist-profile__image {
    width: min(100%, 420px);
    max-width: none;
  }

  .feature-grid,
  .artist-grid,
  .news-grid,
  .about-layout,
  .artist-list,
  .project-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    justify-items: stretch;
  }

  .feature-card,
  .feature-media,
  .feature-empty {
    min-height: 460px;
  }

  .feature-grid {
    gap: 1.25rem;
    padding-top: 2.5rem;
  }

  .artists-section,
  .about-section,
  .contact-cta {
    padding-top: 3.5rem;
  }

  .about-layout {
    gap: 1rem;
  }

  .about-copy,
  .about-panel {
    padding: 1.4rem;
  }

  .page-content {
    padding-top: 104px;
    padding-bottom: 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.3rem, 11vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .artist-profile__content {
    padding: 1.4rem;
  }

  .artist-profile__content h2 {
    font-size: clamp(2rem, 11vw, 4rem);
    overflow-wrap: anywhere;
  }

  .project-grid {
    gap: 1rem;
  }

  .project-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .coming-soon-panel {
    min-height: 48vh;
    padding: 2rem 1rem;
    font-size: clamp(2rem, 13vw, 4.5rem);
  }

  .about-page,
  .contact-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-information {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 0;
    padding-top: 1.5rem;
  }

  .contact-cta__box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .footer-copyright {
    grid-column: auto;
    margin-top: 0.25rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .menu-nav a {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

