:root {
  --ink: #08090b;
  --navy: #10141c;
  --navy-2: #161c28;
  --gunmetal: #2a2e36;
  --gold: #c6a15b;
  --gold-bright: #e8d5a3;
  --gold-deep: #8a6d32;
  --ivory: #f3eee4;
  --stone: #b8aea0;
  --muted: #9a9084;
  --fg: #f3eee4;
  --fg-muted: #c4b8a4;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --tracking-nav: 0.28em;
  --tracking-eyebrow: 0.34em;
  --tracking-hero: 0.18em;
  --text-eyebrow: 0.6875rem;
  --text-nav: 0.75rem;
  --text-lead: clamp(1.2rem, 1rem + 0.7vw, 1.45rem);
  --text-display: clamp(2.4rem, 1.2rem + 5vw, 5.6rem);
  --text-hero: clamp(3.1rem, 1.4rem + 8vw, 7.4rem);
  --shadow-metal:
    inset 0 1px 0 rgb(255 255 255 / 0.22),
    inset 0 -1px 0 rgb(0 0 0 / 0.55),
    0 10px 28px rgb(0 0 0 / 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  background: var(--ink);
}

body.ondulich {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--fg);
  min-height: 100svh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 { text-wrap: balance; margin: 0; }
p { text-wrap: pretty; }

.page-wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.eyebrow.deep { color: var(--gold-deep); }

.display {
  font-family: var(--font-body);
  font-size: var(--text-display);
  font-weight: 600;
  font-style: italic;
  line-height: 1.12;
}

.lead {
  font-family: var(--font-body);
  font-size: var(--text-lead);
  line-height: 1.55;
}

.gold-text {
  background-image: linear-gradient(
    175deg,
    #fff8dc 0%,
    #f7e7b8 10%,
    #e8d5a3 22%,
    #c6a15b 38%,
    #8a6d32 50%,
    #e6d09a 60%,
    #f4e8c6 68%,
    #c6a15b 80%,
    #7a5a22 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter:
    drop-shadow(0 1px 0 rgb(255 246 210 / 0.4))
    drop-shadow(0 2px 0 rgb(70 45 8 / 0.55))
    drop-shadow(0 12px 24px rgb(0 0 0 / 0.45));
}

.gold-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gold-rule span.line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold-bright), var(--gold-deep), transparent);
}
.gold-rule span.diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.metal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.7rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  background: linear-gradient(180deg, #5a5f68 0%, #3a3f48 14%, #24282f 42%, #14161a 72%, #2a2e36 100%);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgb(0 0 0 / 0.7);
  box-shadow: var(--shadow-metal);
  cursor: pointer;
  transition: filter 150ms ease-out, box-shadow 150ms ease-out;
}
.metal-btn:hover {
  filter: brightness(1.08);
  border-color: var(--gold-bright);
}
.metal-btn.ghost {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgb(198 161 91 / 0.35);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 200ms ease;
}
.site-header.is-scrolled {
  background: rgb(8 9 11 / 0.92);
  box-shadow: 0 1px 0 0 rgb(198 161 91 / 0.28);
  backdrop-filter: blur(12px);
}
.site-header:not(.is-scrolled) {
  background: linear-gradient(to bottom, rgb(8 9 11 / 0.7), transparent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1rem;
}
.logo-script {
  height: 2.75rem;
  width: 12rem;
  object-fit: contain;
  mix-blend-mode: screen;
}
.nav-desktop {
  display: none;
  gap: 2rem;
}
.nav-desktop a {
  font-family: var(--font-display);
  font-size: var(--text-nav);
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--stone);
}
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--gold-bright); }
.menu-toggle {
  background: none;
  border: 0;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: var(--tracking-nav);
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.hero.page {
  min-height: 68svh;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgb(8 9 11 / 0.8), rgb(8 9 11 / 0.4), rgb(8 9 11 / 0.25)),
    linear-gradient(to top, var(--ink), rgb(8 9 11 / 0.2), rgb(8 9 11 / 0.35));
}
.hero.page .veil {
  background: linear-gradient(to bottom, rgb(8 9 11 / 0.55), rgb(8 9 11 / 0.45), var(--ink));
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}
.hero h1.brand {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  letter-spacing: var(--tracking-hero);
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0.4rem 0 0;
}
.hero .tagline {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-style: italic;
  color: rgb(243 238 228 / 0.9);
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Sections */
.section { padding: 5rem 0; }
.ivory { background: var(--ivory); color: var(--ink); }
.ivory .display { color: var(--ink); }
.ink { background: var(--ink); }
.navy { background: var(--navy); }
.gunmetal-text { color: var(--gunmetal); }
.muted { color: var(--fg-muted); }

.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.seal {
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.18);
  margin-inline: auto;
  background: var(--ivory);
}
.seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillars {
  display: grid;
  gap: 1.5rem;
}
.pillar {
  background: var(--navy);
  box-shadow: 0 0 0 1px rgb(198 161 91 / 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
}
.pillar:hover { box-shadow: 0 0 0 1px rgb(232 213 163 / 0.55); }
.pillar .thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.pillar .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pillar .body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.pillar h3 {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
}
.continue {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.man-band {
  display: grid;
}
.man-band .photo {
  min-height: 70svh;
  position: relative;
}
.man-band .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.man-band .copy {
  background: var(--navy);
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.closing {
  position: relative;
  isolation: isolate;
  text-align: center;
  padding: 6rem 0;
}
.closing img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.closing .veil {
  position: absolute;
  inset: 0;
  background: rgb(8 9 11 / 0.78);
  z-index: 1;
}
.closing .page-wrap { position: relative; z-index: 2; }

.charges {
  display: grid;
  gap: 1px;
  background: rgb(198 161 91 / 0.3);
  margin-top: 4rem;
}
.charges li {
  list-style: none;
  background: var(--ivory);
  padding: 2.5rem;
}
.charges { padding: 0; margin-left: 0; }

.site-footer {
  border-top: 1px solid rgb(198 161 91 / 0.2);
  background: var(--navy);
}
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4rem 0;
}
.footer-grid h3 {
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  font-style: normal;
}
.footer-grid ul { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.footer-grid li { margin: 0.7rem 0; }
.footer-grid a { font-size: 1.25rem; color: rgb(243 238 228 / 0.9); }
.footer-grid a:hover { color: var(--gold); }
.footer-bar {
  border-top: 1px solid rgb(198 161 91 / 0.15);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
}

.field {
  width: 100%;
  min-height: 48px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgb(198 161 91 / 0.35);
  color: var(--ivory);
  padding: 0.7rem 0.1rem;
  font: inherit;
  outline: none;
}
.field:focus { border-bottom-color: var(--gold-bright); }
.form-box {
  border: 1px solid rgb(198 161 91 / 0.3);
  background: rgb(8 9 11 / 0.6);
  padding: 2.5rem;
}
.form-box label { display: block; margin-bottom: 1.4rem; }
.form-notice {
  padding: 1rem;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  margin-bottom: 1.5rem;
}

.section-head { text-align: center; max-width: 48rem; margin-inline: auto; }
.section-head .row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.section-head .row i {
  width: 2rem;
  height: 1px;
  background: rgb(198 161 91 / 0.7);
  display: block;
}

@media (min-width: 768px) {
  .two-col { grid-template-columns: 0.9fr 1.1fr; }
  .two-col.split { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .man-band { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .charges { grid-template-columns: 1fr 1fr; }
  .hero { align-items: center; }
  .form-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}
