:root {
  --bg: #f5f1eb;
  --bg-soft: #efe7dc;
  --surface: rgba(255,255,255,0.72);
  --surface-strong: rgba(255,255,255,0.88);
  --text: #1e1a17;
  --muted: #6e6358;
  --line: rgba(30,26,23,0.12);
  --accent: #8d5d47;
  --shadow: 0 20px 60px rgba(28, 21, 16, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6f2ec 0%, #f1ebe3 100%);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(245, 241, 235, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.brand-subtitle {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.96rem;
}
.site-nav a:hover { color: var(--text); }

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-backdrop {
  background-image: url('Background.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.hero-overlay {
  background: linear-gradient(180deg, rgba(16,13,11,0.22) 0%, rgba(16,13,11,0.54) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 8rem 0 5rem;
  max-width: 760px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 7vw, 5.9rem);
  line-height: 0.95;
  margin: 0;
}
.hero-subtitle {
  margin: 0.9rem 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero .eyebrow,
.hero-note,
.hero a { color: #fff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: rgba(255,255,255,0.95);
  color: var(--text) !important;
}
.button-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
}
.hero-note {
  margin-top: 1.5rem;
  max-width: 44rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.section { padding: 5rem 0; }
.section-soft {
  background: linear-gradient(180deg, rgba(141,93,71,0.04), rgba(255,255,255,0));
}
.section-headline h2,
.series-header h2,
.contact-section h2,
.feature-split h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1;
}
.intro-grid,
.series-header,
.feature-split {
  display: grid;
  gap: 1.4rem;
}
.intro-grid,
.series-header { grid-template-columns: 1.15fr 0.85fr; }
.feature-split { grid-template-columns: 0.95fr 0.9fr; align-items: start; }

.card {
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-small { padding: 1.2rem 1.3rem; }
.prose,
.contact-card { padding: 1.5rem 1.6rem; }
.prose p:last-child,
.series-meta p:last-child,
.contact-card p:last-child { margin-bottom: 0; }
.banner-card {
  margin-top: 1.4rem;
  overflow: hidden;
}
.banner-card img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}
.intro-text { margin-top: 1.2rem; }

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.compact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.curated-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.art-card {
  margin: 0;
  background: var(--surface-strong);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.art-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e9dfd2;
}
.art-card-feature img {
  aspect-ratio: auto;
  max-height: 640px;
  object-fit: contain;
  background: #f4ede4;
}
figcaption {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem 1.05rem;
}
figcaption strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.05;
}
figcaption span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section { padding-bottom: 6rem; }
.contact-card {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}
.mail-link {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 980px) {
  .intro-grid,
  .series-header,
  .feature-split,
  .curated-grid {
    grid-template-columns: 1fr;
  }
  .nav-wrap { padding: 0.9rem 0; align-items: flex-start; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .compact-grid,
  .curated-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 7rem; }
  .section { padding: 4rem 0; }
}
