:root {
  --bg: #070707;
  --bg-2: #101010;
  --card: #141414;
  --ink: #f7f1e4;
  --muted: #c4b8a2;
  --gold: #d4af37;
  --gold-2: #f0d78c;
  --gold-deep: #8d6b1f;
  --line: rgba(212, 175, 55, 0.35);
  --line-soft: rgba(247, 241, 228, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --display: "Cinzel", serif;
  --body: "Outfit", sans-serif;
  --wrap: 1120px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(212, 175, 55, 0.16), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 80;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.12), rgba(7, 7, 7, 0.72));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(240, 215, 140, 0.35);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(212, 175, 55, 0.16),
    inset 0 1px 0 rgba(255, 244, 204, 0.28);
}
.nav-bar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  font-family: "Cinzel Decorative", serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  flex: none;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 13px;
}
.brand small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.22em;
  font-size: 9px;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--gold-2);
  padding: 8px 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > a,
.dropdown-row > a {
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 12px;
}
.nav-links > a:hover,
.dropdown-row > a:hover,
.nav-links > a[aria-current="page"],
.dropdown-row > a[aria-current="page"] {
  color: var(--gold-2);
}
.dropdown { position: relative; }
.dropdown-row { display: flex; align-items: center; }
.dropdown-row > a { padding-right: 0; }
.dropdown-toggle {
  background: transparent;
  border: 0;
  color: var(--gold);
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.16), rgba(12, 12, 12, 0.82));
  border: 1px solid rgba(240, 215, 140, 0.35);
  padding: 8px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
  display: none;
}
@media (min-width: 761px) {
  .dropdown:hover .dropdown-panel,
  .dropdown:focus-within .dropdown-panel,
  .dropdown.is-open .dropdown-panel { display: grid; }
}
.dropdown-panel a {
  text-decoration: none;
  color: var(--ink);
  padding: 8px 10px;
  font-size: 14px;
}
.dropdown-panel a:hover,
.dropdown-panel a[aria-current="page"] {
  color: #111;
  background: var(--gold);
}

.hero {
  position: relative;
  padding: 72px 0 64px;
  text-align: center;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow:
    80px 40px 0 -1px rgba(240, 215, 140, 0.7),
    -120px 90px 0 -2px rgba(212, 175, 55, 0.8),
    160px 120px 0 0 rgba(240, 215, 140, 0.45),
    -200px 30px 0 -2px rgba(212, 175, 55, 0.55);
  opacity: 0.7;
}
.hero::before { top: 80px; left: 18%; }
.hero::after { top: 140px; right: 16%; }
.arch {
  width: min(760px, 100%);
  height: 120px;
  margin: 0 auto 8px;
}
.arch text {
  fill: var(--gold-2);
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: 6px;
}
.monogram {
  width: 148px;
  height: 148px;
  margin: -18px auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  border: 1px solid rgba(240, 215, 140, 0.45);
  background:
    radial-gradient(circle, rgba(240, 215, 140, 0.28), rgba(12, 12, 12, 0.2) 68%);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 36px rgba(212, 175, 55, 0.45),
    inset 0 1px 0 rgba(255, 244, 204, 0.45);
  backdrop-filter: blur(8px);
  transform: perspective(600px) rotateX(10deg);
}
.monogram span {
  font-family: "Cinzel Decorative", serif;
  font-size: 84px;
  line-height: 1;
  background: linear-gradient(180deg, #fff4cc, #d4af37 45%, #8d6b1f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
}
.monogram .a { left: 18px; top: 28px; }
.monogram .d { right: 16px; top: 36px; font-size: 92px; }
.kicker {
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0.08em;
  margin: 10px 0 8px;
}
.lede {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}
.actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 46px;
  padding: 0 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid var(--gold);
  cursor: pointer;
  background: transparent;
}
.btn-gold {
  background: linear-gradient(180deg, #f0d78c, #d4af37);
  color: #1a1408;
  border-color: transparent;
  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(255, 244, 204, 0.8);
}
.btn-gold:hover { filter: brightness(1.05); }
.btn-ghost {
  color: var(--gold-2);
  background: rgba(212, 175, 55, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 204, 0.28),
    0 0 16px rgba(212, 175, 55, 0.16);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(212, 175, 55, 0.16); }

.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2,
.page-hero h1,
.prose h2,
.aside h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.rule {
  width: 88px;
  height: 1px;
  background: var(--gold);
  margin: 14px auto;
  position: relative;
}
.rule::before,
.rule::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  background: var(--bg);
}
.rule::before { left: -18px; }
.rule::after { right: -18px; }
.section-head p { color: var(--muted); max-width: 620px; margin: 0 auto; }

.panel {
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.14), rgba(12, 12, 12, 0.55));
  border: 1px solid rgba(240, 215, 140, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}

.checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 32px;
  padding: 28px;
}
.checks a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.checks a::before {
  content: "✓";
  color: var(--gold);
}
.checks a:hover { color: var(--gold-2); }

.card-grid, .event-grid {
  display: grid;
  gap: 16px;
  perspective: 900px;
}
.card-grid { grid-template-columns: repeat(3, 1fr); }
.event-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.14), rgba(12, 12, 12, 0.62));
  border: 1px solid rgba(240, 215, 140, 0.35);
  padding: 22px;
  min-height: 180px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
  border-color: var(--gold-2);
  transform: rotateX(6deg) rotateY(-8deg) translateY(-6px);
  box-shadow:
    0 28px 50px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(255, 244, 204, 0.5);
}
.card span {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}
.card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.card p { color: var(--muted); font-weight: 300; }
.card em {
  margin-top: auto;
  font-style: normal;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card-photo {
  padding: 0;
  overflow: hidden;
}
.card-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.card-photo span,
.card-photo h3,
.card-photo p,
.card-photo em { margin-left: 22px; margin-right: 22px; }
.card-photo span { margin-top: 16px; }
.card-photo em { margin-bottom: 22px; }
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
  margin: 8px 0 28px;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid rgba(240, 215, 140, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(212, 175, 55, 0.22);
}
.gallery figure:first-child { grid-row: span 2; }
.gallery figure:first-child img { height: 100%; min-height: 494px; }
.gallery figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  padding: 22px;
  border: 1px solid rgba(240, 215, 140, 0.35);
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.14), rgba(12, 12, 12, 0.55));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}
.step strong {
  display: block;
  font-family: var(--display);
  color: var(--gold-2);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.step p { color: var(--muted); font-weight: 300; }

.cta {
  text-align: center;
  padding: 56px 24px;
  border: 1px solid rgba(240, 215, 140, 0.35);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(212, 175, 55, 0.22), transparent 70%),
    linear-gradient(180deg, rgba(240, 215, 140, 0.12), rgba(12, 12, 12, 0.72));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.cta p { color: var(--muted); margin-bottom: 20px; }
.phone {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold-2);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.14), rgba(12, 12, 12, 0.62));
  border: 1px solid rgba(240, 215, 140, 0.35);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}
.stars {
  margin: 0;
  color: var(--gold-2);
  letter-spacing: 0.18em;
}
.review blockquote { margin: 0; }
.review blockquote p { color: var(--ink); font-weight: 300; }
.review-by { display: grid; gap: 2px; }
.review-by span { color: var(--muted); font-size: 14px; font-weight: 300; }
.review > a {
  margin-top: auto;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.google-band { margin-top: 36px; }
.g-carousel { position: relative; }
.g-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 18px 16px;
}
.g-track::-webkit-scrollbar { display: none; }
.g-card {
  flex: 0 0 min(420px, calc(100% - 28px));
  scroll-snap-align: start;
  min-height: 340px;
  padding: 22px 48px 28px;
  border-radius: 16px;
  background: #fff;
  color: #3c4043;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.g-card-head { display: flex; gap: 12px; align-items: center; }
.g-avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.g-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #202124;
  font-weight: 600;
  font-size: 16px;
}
.g-check { width: 16px; height: 16px; flex: 0 0 16px; }
.g-meta {
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #70757a;
  font-size: 13px;
  font-weight: 400;
}
.g-logo { width: 16px; height: 16px; flex: 0 0 16px; }
.g-stars {
  margin: 14px 0 10px;
  color: #fbbc04;
  letter-spacing: 0.12em;
  font-size: 18px;
}
.g-text {
  margin: 0;
  color: #3c4043;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}
.g-arrow {
  position: absolute;
  top: 46%;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #5f6368;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.g-prev { left: 0; }
.g-next { right: 0; }
.g-source { margin: 14px 0 0; }
.g-source a { color: var(--gold-2); text-decoration: none; }
.live-feed { min-height: 420px; }

.shorts-layout {
  display: grid;
  gap: 20px;
}
.shorts-player {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(240, 215, 140, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}
.shorts-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.shorts-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.short {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.short img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(240, 215, 140, 0.35);
}
.short span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.ig {
  background: #fff;
  color: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.ig-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  padding: 18px 20px 16px;
}
.ig-id {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  flex: 1 1 240px;
  text-decoration: none;
  color: #111;
}
.ig-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}
.ig-name, .ig-handle { display: block; }
.ig-name { font-weight: 700; font-size: 16px; }
.ig-handle { color: #737373; font-size: 14px; margin-top: 2px; }
.ig-stats {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ig-stats strong { display: block; font-size: 16px; color: #111; }
.ig-stats span { color: #737373; font-size: 13px; }
.ig-follow {
  margin-left: auto;
  background: #0095f6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 18px;
}
.ig-follow:hover { background: #1877f2; }
.ig-bio {
  margin: 0;
  padding: 0 20px 16px;
  color: #262626;
  font-size: 14px;
  line-height: 1.45;
}
.ig-latest { display: block; background: #fafafa; }
.ig-latest img {
  display: block;
  width: min(420px, 100%);
  margin: 0 auto;
  object-fit: cover;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.ig-grid a { display: block; aspect-ratio: 1; overflow: hidden; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; display: block; }

.page-hero {
  padding: 64px 0 28px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  margin: 10px 0;
}
.crumbs {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.crumbs a { color: var(--gold); text-decoration: none; }

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
  padding-bottom: 72px;
}
.prose h2 { font-size: 28px; margin: 28px 0 10px; }
.prose p { color: var(--muted); margin-bottom: 14px; font-weight: 300; font-size: 17px; }
.prose .check-list { margin: 8px 0 20px; }
.check-list li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.check-list li::before { content: "✓"; color: var(--gold); }
.aside {
  position: sticky;
  top: calc(var(--header) + 16px);
  padding: 22px;
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.16), rgba(12, 12, 12, 0.72));
  border: 1px solid rgba(240, 215, 140, 0.4);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.22),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}
.aside h2 { font-size: 22px; margin: 8px 0 10px; }
.aside p { color: var(--muted); font-weight: 300; margin-bottom: 16px; }
.aside .btn { width: 100%; margin-bottom: 10px; }
.related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.related a {
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--gold-2);
  padding: 8px 12px;
  font-size: 14px;
}
.related a:hover { background: rgba(212, 175, 55, 0.12); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding-bottom: 80px;
}
form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(240, 215, 140, 0.35);
  background: linear-gradient(180deg, rgba(240, 215, 140, 0.12), rgba(12, 12, 12, 0.62));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 244, 204, 0.35);
  backdrop-filter: blur(16px);
}
label { display: grid; gap: 6px; font-size: 14px; color: var(--gold-2); }
input, select, textarea {
  background: #0c0c0c;
  border: 1px solid var(--line);
  padding: 12px;
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-2); }
.checks-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}
.checks-inline label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 400;
}
.note {
  border: 1px solid var(--line);
  padding: 16px;
  background: #141208;
  color: var(--ink);
}
.note h2 {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.04em;
}
.note p { color: var(--muted); margin-top: 8px; }
.note pre {
  white-space: pre-wrap;
  font-family: var(--body);
  color: var(--ink);
  margin: 14px 0;
}
.site-footer .phone { font-size: 22px; color: var(--gold-2); }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
  background: #050505;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}
.site-footer h2 {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.site-footer a, .site-footer p {
  color: var(--muted);
  text-decoration: none;
  display: block;
  margin: 6px 0;
  font-weight: 300;
}
.site-footer a:hover { color: var(--gold-2); }
.site-footer a.address { line-height: 1.45; }
.site-footer a.social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-footer a.social svg { width: 16px; height: 16px; flex: 0 0 16px; }
.socials { display: grid; gap: 8px; margin-top: 18px; }
.socials a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.socials a:hover { color: var(--gold-2); }
.socials svg { width: 18px; height: 18px; flex: 0 0 18px; }
.legal {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.legal a { display: inline; margin: 0; }

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 72px;
}
.sitemap-grid h2 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.sitemap-grid a {
  display: block;
  color: var(--gold-2);
  text-decoration: none;
  margin: 8px 0;
}
.sitemap-grid a:hover { color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .card-grid, .steps, .foot-grid, .review-grid { grid-template-columns: 1fr 1fr; }
  .event-grid { grid-template-columns: 1fr 1fr; }
  .layout, .contact-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .aside { position: static; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #0c0c0c;
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .dropdown-panel {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    background: transparent;
  }
  .dropdown.is-open .dropdown-panel { display: grid; }
  .card-grid, .event-grid, .steps, .checks, .foot-grid, .checks-inline, .review-grid, .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .g-card { min-height: 300px; }
  .ig-follow { margin-left: 0; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .shorts-row { gap: 8px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure:first-child { grid-row: auto; }
  .gallery img,
  .gallery figure:first-child img { height: 220px; min-height: 0; }
  .brand strong { letter-spacing: 0.08em; font-size: 12px; }
  .arch { height: 86px; }
  .arch text { font-size: 22px; letter-spacing: 2px; }
  .hero { padding-top: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .monogram { transition: none; }
  .card:hover, .monogram { transform: none; }
}
