:root {
  color-scheme: light;
  --cream: #f4ebd5;
  --cream-deep: #eadcbf;
  --green: #183f32;
  --green-soft: #245542;
  --gold: #f4b323;
  --gold-light: #ffd66b;
  --terracotta: #a94f32;
  --ink: #211b16;
  --muted: #655d53;
  --white: #fffdf7;
  --line: rgba(24, 63, 50, .18);
  --shadow: 0 22px 60px rgba(47, 40, 25, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 10% 15%, rgba(244,179,35,.12), transparent 26rem),
    radial-gradient(circle at 88% 76%, rgba(36,85,66,.08), transparent 28rem),
    var(--cream);
  color: var(--ink);
  font-family: Inter, Lato, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
a:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 4px; }
.wrap { width: min(1160px, 92vw); margin-inline: auto; }
.narrow { width: min(820px, 92vw); }
.skip-link { position: fixed; left: 18px; top: -90px; z-index: 100; padding: 10px 14px; border-radius: 10px; background: var(--gold); color: var(--ink); font-weight: 900; }
.skip-link:focus { top: 18px; }
.site-header { background: var(--green); color: var(--white); border-bottom: 4px solid var(--gold); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 11px; }
.brand { min-width: 0; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mango { width: 58px; height: 58px; object-fit: contain; flex: none; filter: drop-shadow(0 3px 3px rgba(0,0,0,.12)); }
.brand-copy { display: flex; flex-direction: column; align-items: center; min-width: 0; line-height: 1; }
.brand-name { color: var(--gold); font-family: "Arial Black", Inter, Lato, sans-serif; font-size: clamp(21px, 2.25vw, 30px); font-weight: 950; letter-spacing: -.045em; white-space: nowrap; }
.brand-location { margin-top: 7px; color: var(--white); font-size: 9px; font-weight: 850; letter-spacing: .25em; text-transform: uppercase; white-space: nowrap; }
nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 4px; }
nav a { padding: 8px 10px; border-radius: 999px; text-decoration: none; color: rgba(255,253,247,.78); font-weight: 800; border: 1px solid transparent; }
nav a:hover, nav a.active { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
nav a.language { color: var(--gold-light); }
main { flex: 1; }
.home-hero { padding: clamp(72px, 10vw, 132px) 0 clamp(88px, 11vw, 144px); }
.home-copy { max-width: 980px; text-align: center; }
.eyebrow { margin: 0 0 13px; color: var(--terracotta); font-size: 13px; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
h1,h2 { font-family: "Arial Black", Inter, Lato, sans-serif; color: var(--green); letter-spacing: -.04em; }
h1 { margin: 0 auto; max-width: 940px; font-size: clamp(46px, 6.4vw, 82px); line-height: 1.02; }
h2 { margin: 0; font-size: clamp(27px, 3vw, 39px); line-height: 1.12; }
.statement-card { margin: 40px auto 0; max-width: 900px; padding: clamp(28px,4vw,44px); background: rgba(255,253,247,.78); border: 1px solid var(--line); border-top: 7px solid var(--gold); border-radius: 24px; box-shadow: var(--shadow); text-align: left; }
.statement-card p { margin: 17px 0 0; color: var(--muted); font-size: clamp(17px,1.7vw,20px); }
.page-hero { padding: clamp(65px,9vw,108px) 0 28px; text-align: center; }
.page-hero.compact { padding-bottom: 18px; }
.page-hero h1 { margin-inline: auto; font-size: clamp(52px,8vw,94px); }
.page-intro { margin: 19px auto 0; color: var(--muted); font-size: clamp(18px,2vw,22px); }
.content-section { padding: 26px 0 clamp(82px,10vw,126px); }
.artist-card, .contact-card { background: rgba(255,253,247,.84); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); overflow: hidden; }
.artist-card { display: grid; grid-template-columns: minmax(250px, 350px) minmax(0, 1fr); align-items: stretch; }
.artist-portrait { min-height: 100%; background: var(--cream-deep); }
.artist-portrait img { display: block; width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center top; }
.artist-copy { padding: clamp(32px,5vw,58px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.artist-copy p { max-width: 650px; color: var(--muted); font-size: 19px; }
.card-label { margin: 0 0 10px !important; color: var(--terracotta) !important; font-size: 12px !important; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.card-action { margin-top: 17px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 13px 20px; border-radius: 14px; background: var(--green); color: var(--white); border: 2px solid var(--green); text-decoration: none; font-weight: 900; transition: transform .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); background: var(--green-soft); }
.btn.secondary { background: transparent; color: var(--green); }
.btn.secondary:hover { background: rgba(24,63,50,.08); }
.contact-section { padding-top: 22px; }
.contact-card { display: grid; grid-template-columns: minmax(0, 3fr) minmax(300px, 2fr); min-height: 340px; }
.contact-copy { padding: clamp(32px,5vw,60px); }
.contact-copy p { margin: 20px 0 0; color: var(--muted); font-size: clamp(17px,1.8vw,20px); }
.contact-action { padding: clamp(32px,5vw,60px); background: var(--green); color: var(--white); display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 36px; }
.email-address { color: var(--white); font-size: clamp(17px,1.8vw,21px); font-weight: 750; line-height: 1.45; overflow-wrap: anywhere; }
.contact-action .btn { min-width: 150px; background: var(--gold); color: var(--ink); border-color: var(--gold); }
.contact-action .btn:hover { background: var(--gold-light); }
.not-found { padding: clamp(70px,10vw,125px) 0; text-align: center; }
.error-code { color: var(--green); font-family: "Arial Black", Inter, Lato, sans-serif; font-size: clamp(108px,20vw,218px); font-weight: 950; line-height: .8; letter-spacing: -.075em; transform: scaleX(1.12); }
.not-found h1 { margin: 42px auto 0; font-size: clamp(38px,6vw,66px); }
.not-found p { margin: 12px auto 0; color: var(--muted); font-size: 19px; }
.not-found-actions { margin-top: 34px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.site-footer { background: var(--green); color: rgba(255,253,247,.76); border-top: 4px solid var(--gold); padding: 34px 0 40px; text-align: center; font-size: 14px; }
@media (max-width: 900px) {
  .header-inner { display: grid; justify-items: center; gap: 11px; }
  nav { justify-content: center; }
  .artist-card { grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr); }
}
@media (max-width: 700px) {
  .brand-mango { width: 50px; height: 50px; }
  .brand-name { font-size: clamp(18px,5vw,24px); }
  .brand-location { font-size: 8px; letter-spacing: .2em; }
  nav a { padding: 8px 9px; font-size: 14px; }
  .artist-card, .contact-card { grid-template-columns: 1fr; }
  .artist-portrait img { min-height: 0; aspect-ratio: 1 / 1; }
  .contact-action { min-height: 220px; }
}
@media (max-width: 440px) {
  .wrap { width: min(94vw,1160px); }
  .brand { gap: 7px; }
  .brand-mango { width: 44px; height: 44px; }
  .brand-name { font-size: 17px; letter-spacing: -.05em; }
  .brand-location { font-size: 7px; letter-spacing: .14em; margin-top: 5px; }
  nav { gap: 0; }
  nav a { font-size: 13px; padding: 7px 8px; }
  h1 { font-size: clamp(41px,13vw,62px); }
  .btn { width: 100%; }
  .not-found-actions { display: grid; }
}
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; transition: none !important; } }
