:root {
  --bg: #f3f0ea;
  --surface: #ffffff;
  --surface-2: #ece7df;
  --text: #151515;
  --muted: #6b655e;
  --border: rgba(21, 21, 21, 0.12);
  --accent: #111111;
  --max-width: 1180px;
  --radius: 22px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.95em;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  background: #000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-border {
  border-top: 1px solid var(--border);
}

.section-dark {
  background: #141414;
  color: #f7f4ee;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
.brand,
.site-nav a {
  font-family: Georgia, "Times New Roman", serif;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.85rem;
  line-height: 1.05;
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(243, 240, 234, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 0 auto 6px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero-grid,
.two-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero {
  padding-top: 56px;
}

.hero-copy {
  max-width: 640px;
}

.hero-text,
.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--text);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--accent);
  color: #fff;
}

.button-light {
  background: transparent;
  color: var(--text);
}

.hero-art {
  margin: 0;
  padding: 18px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(145deg, #ffffff, #e6e1d8);
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: min(78vh, 780px);
  object-fit: cover;
  border-radius: var(--radius);
}

.section-head {
  margin-bottom: 34px;
}

.section-copy p {
  font-size: 1.05rem;
  color: var(--muted);
}

.show-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.show-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.show-media {
  background: rgba(255, 255, 255, 0.04);
}

.show-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-body {
  padding: 30px;
}

.show-meta,
.show-place,
.show-note {
  font-size: 0.95rem;
}

.show-meta {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.show-place,
.show-note {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-item figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px 18px;
}

.gallery-item figcaption span,
.placeholder-box small {
  color: var(--muted);
}

.gallery-placeholder {
  min-height: 380px;
}

.placeholder-box {
  display: grid;
  place-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 380px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(0, 0, 0, 0.06), transparent 35%),
    linear-gradient(145deg, #f7f5f1, #ebe5dc);
}

.placeholder-box span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(21, 21, 21, 0.28);
}

.button-like {
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 48px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.lightbox {
  width: min(92vw, 980px);
  border: none;
  padding: 20px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.74);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox p {
  margin: 12px 4px 0;
  color: rgba(255, 255, 255, 0.82);
}

.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-bottom: 14px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.75rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .show-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid,
  .two-columns,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-art img {
    height: auto;
    max-height: 720px;
  }

  .show-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
