:root {
  --ink: #111;
  --paper: #fff;
  --blue: #1400ff;
  --muted: rgba(255, 255, 255, 0.72);
  --gutter: clamp(16px, 2.5vw, 30px);
  --sans: "Jost", "Futura", "Century Gothic", system-ui, sans-serif;
  --script: "Pinyon Script", "Snell Roundhand", cursive;
}

* { box-sizing: border-box; }

html, body { margin: 0; }

body {
  background: #000;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Full-screen photographic background (the copy-free artwork) */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #000;
}
.backdrop img { width: 100%; height: 100%; max-width: none; object-fit: cover; }
.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 760px) {
  .backdrop { grid-template-columns: 1fr; }
  .backdrop img:not(:first-child) { display: none; }
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 18px var(--gutter);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.site-header .home { text-decoration: none; font-weight: 500; }
.site-header nav { display: flex; gap: 1.5rem; }
.site-header nav a { text-decoration: none; border-bottom: 1px solid transparent; }
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { border-bottom-color: currentColor; }

/* Landing triptych */
.triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1320px;
  margin: clamp(8px, 3vw, 40px) auto 0;
  padding: 0 var(--gutter);
}
.triptych img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

@media (max-width: 760px) {
  .triptych { grid-template-columns: 1fr; gap: 16px; }
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px var(--gutter) 0;
  font-size: 16px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}
.details h2 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.details p { margin: 0; }

@media (max-width: 760px) {
  .details { grid-template-columns: 1fr; gap: 20px; }
}

/* Contact */
.contact {
  max-width: 640px;
  margin: clamp(8px, 4vw, 48px) auto 0;
  padding: clamp(24px, 5vw, 48px);
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
@media (max-width: 680px) {
  .contact { margin-left: 16px; margin-right: 16px; }
}
.contact h1 {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 120px);
  line-height: 1;
  margin: 0 0 12px;
}
.contact .lede { margin: 0 0 32px; }

.contact form { display: grid; gap: 18px; }
.contact label { display: grid; gap: 6px; font-size: 14px; color: var(--muted); }
.contact input,
.contact select,
.contact textarea {
  font: inherit;
  font-size: 16px;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  padding: 8px 0;
  width: 100%;
}
.contact select option { color: var(--ink); }
.contact textarea { min-height: 140px; resize: vertical; border: 1px solid rgba(255, 255, 255, 0.8); padding: 10px; }
.contact input:focus,
.contact select:focus,
.contact textarea:focus { outline: none; border-color: var(--paper); box-shadow: 0 1px 0 var(--paper); }
.contact button {
  justify-self: start;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: var(--blue);
  border: 0;
  padding: 12px 28px;
  cursor: pointer;
}
.contact button:hover { background: var(--paper); color: var(--ink); }
.contact .error { margin: 0 0 24px; padding: 12px 14px; border: 1px solid var(--paper); background: rgba(20, 0, 255, 0.6); }
.contact .alt { margin-top: 36px; color: var(--muted); font-size: 15px; }

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 48px var(--gutter) 24px;
  font-size: 13px;
  color: var(--muted);
}
