:root {
  --bg: #09060b;
  --bg-2: #170d18;
  --panel: rgba(255,255,255,0.078);
  --panel-strong: rgba(255,255,255,0.13);
  --text: #fbf2fb;
  --muted: #d7c5dc;
  --accent: #d7b565;
  --accent-2: #9b5ee4;
  --line: rgba(255,255,255,0.18);
  --shadow: 0 28px 90px rgba(0,0,0,0.50);
  --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(135deg, rgba(9, 6, 11, 0.94), rgba(22, 12, 24, 0.88) 42%, rgba(5, 3, 7, 0.94)),
    url('../../marble%20background.jpg');
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 8%, rgba(215,181,101,0.20), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(155,94,228,0.18), transparent 34%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: auto, auto, 46px 46px, 46px 46px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(9,6,11,0.80);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  letter-spacing: 0.16em;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 700;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(215,181,101,0.68);
  box-shadow: 0 0 26px rgba(215,181,101,0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 11px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.88rem;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  background: rgba(215,181,101,0.16);
  color: #fff7df;
  transform: translateY(-1px);
}

main { position: relative; z-index: 1; }

.hero {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.hero.compact {
  grid-template-columns: 1fr;
  max-width: 960px;
  text-align: center;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font: 700 0.76rem/1.4 system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }

h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 12px 42px rgba(0,0,0,0.56);
}

.hero h2,
.page-title {
  margin-top: 20px;
  font-size: clamp(1.6rem, 4vw, 3.15rem);
  color: #fff4d4;
  font-weight: 500;
}

.lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.hero.compact .lede { margin-left: auto; margin-right: auto; }

.actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero.compact .actions { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 750;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.button.primary {
  background: linear-gradient(135deg, #efd48a, #a56b23);
  color: #1d1005;
  border-color: rgba(255,255,255,0.28);
}

.image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.06);
}

.image-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.48));
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: #fff4d4;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(215,181,101,0.48);
  background: var(--panel-strong);
}

.card-visual {
  aspect-ratio: 4 / 3;
  background: #1b1020;
  overflow: hidden;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.card:hover .card-visual img { transform: scale(1.04); }

.card-body { padding: 20px; }
.card-body h3 { font-size: 1.45rem; color: #fff4d4; }
.card-body p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }

.page-card {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto 54px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.075);
  box-shadow: var(--shadow);
}

.page-card p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.gallery-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 60px rgba(0,0,0,0.26);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card div { padding: 18px; }
.gallery-card h3 { color: #fff4d4; font-size: 1.3rem; }
.gallery-card p { color: var(--muted); line-height: 1.55; }

.note {
  margin-top: 24px;
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(5,3,7,0.72);
  margin-top: 40px;
}

.footer-shell {
  width: min(1160px, calc(100% - 36px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font: 0.92rem/1.4 system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff4d4;
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-shell { min-height: auto; padding: 15px 0; align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .site-nav a { padding: 8px 10px; }
  h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  .card-grid, .gallery-grid { grid-template-columns: 1fr; }
  .image-frame img { min-height: 310px; }
  .footer-shell { flex-direction: column; align-items: flex-start; padding: 22px 0; }
}
