:root {
  --ink: #151113;
  --charcoal: #201a1d;
  --paper: #fbf7f5;
  --rose: #e6a1af;
  --berry: #ae075c;
  --gold: #eabd91;
  --muted: #776d71;
  --line: rgba(230, 161, 175, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Montserrat, Arial, sans-serif; line-height: 1.75; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; z-index: 100; padding: .7rem 1rem; background: white; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: white; background: transparent; }
.nav-wrap { width: min(1180px, calc(100% - 40px)); min-height: 82px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand img { width: 248px; height: auto; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 600; padding: 1rem 0; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--rose); }
.nav details { position: relative; }
.nav summary { cursor: pointer; list-style: none; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 600; }
.nav summary::-webkit-details-marker { display: none; }
.submenu { position: absolute; top: 2rem; left: -1rem; width: 230px; padding: .7rem 1rem; background: #221c1f; box-shadow: 0 15px 35px rgba(0,0,0,.3); }
.submenu a { display: block; padding: .55rem 0; }
.menu-button { display: none; border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; padding: .55rem .8rem; font: inherit; }

.hero { min-height: calc(100vh - 82px); position: relative; display: grid; place-items: center; text-align: center; color: white; background: #111 url("assets/hero.jpg") center/cover no-repeat; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,8,10,.32), rgba(12,8,10,.62)); }
.hero-inner { position: relative; padding: 4rem 1.5rem; }
.kicker { margin: 0 0 .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .35em; font-size: .76rem; font-weight: 600; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.15; }
.hero h1 { margin: 0; font-size: clamp(3.2rem, 8vw, 7rem); text-shadow: 0 5px 25px rgba(0,0,0,.4); }
.hero .scroll { display: inline-block; margin-top: 2.3rem; text-decoration: none; text-transform: uppercase; letter-spacing: .25em; font-size: .68rem; }

.section { width: min(920px, calc(100% - 40px)); margin: auto; padding: 7rem 0; }
.section.narrow { width: min(760px, calc(100% - 40px)); }
.section-heading { text-align: center; margin-bottom: 3rem; }
.section-heading h1, .section-heading h2 { margin: 0; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.section-heading h1::after, .section-heading h2::after { content: ""; display: block; width: 44px; height: 2px; margin: 1.2rem auto 0; background: var(--rose); }
.prose { font-size: 1.05rem; color: #453c40; }
.prose p { margin: 0 0 1.35rem; }
.prose .lead { text-align: center; font-size: 1.2rem; color: var(--muted); }
.dropcap::first-letter { float: left; color: var(--rose); font-family: Georgia, serif; font-size: 5rem; line-height: .78; padding: .45rem .55rem 0 0; }
.signature { margin-top: 3.5rem; text-align: center; color: var(--gold); font-family: Georgia, serif; font-size: 1.22rem; font-style: italic; }
.signature img { width: 112px; margin: 0 auto 1rem; }
.quote { margin: 2.5rem 0; padding: 2rem; border: 1px solid var(--line); color: #8d5c65; text-align: center; font-family: Georgia, serif; font-size: 1.35rem; }
.cta { display: inline-flex; padding: .8rem 1.25rem; border: 1px solid var(--rose); color: var(--berry); text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; }
.cta:hover { color: white; background: var(--berry); border-color: var(--berry); }
.center { text-align: center; }
.content-image { margin: 2.5rem auto; border-radius: 2px; box-shadow: 0 16px 50px rgba(44,28,36,.12); }
.content-image.portrait { width: min(640px, 100%); }
.caption { margin-top: -.6rem; text-align: center; color: var(--muted); font-size: .8rem; }
.notice { padding: 1.25rem 1.5rem; border-left: 3px solid var(--gold); background: white; }

.page-hero { min-height: 340px; display: grid; place-items: center; padding: 4rem 1.5rem; color: white; text-align: center; background: linear-gradient(rgba(19,13,16,.55),rgba(19,13,16,.72)), url("assets/hero.jpg") center 64%/cover; }
.page-hero h1 { margin: 0; font-size: clamp(2.8rem, 7vw, 5.5rem); }
.contact-card { padding: 3rem; background: var(--charcoal); color: white; text-align: center; }
.contact-card p { color: #d7ced2; }
.contact-card .cta { color: white; margin-top: 1rem; }

.site-footer { padding: 3rem 1.5rem; background: #100d0f; color: #bbb0b5; text-align: center; }
.site-footer img { width: 70px; margin: 0 auto 1.25rem; }
.site-footer a { color: var(--rose); }
.site-footer p { margin: .35rem 0; font-size: .78rem; }

@media (max-width: 860px) {
  .nav-wrap { min-height: 72px; }
  .brand img { width: 205px; }
  .menu-button { display: block; }
  .nav { display: none; position: absolute; left: 12px; right: 12px; top: 72px; padding: 1rem 20px 1.5rem; flex-direction: column; align-items: stretch; gap: .2rem; background: rgba(31, 23, 27, .94); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(14px); }
  .nav.open { display: flex; }
  .nav a, .nav summary { display: block; padding: .65rem 0; }
  .nav details { width: 100%; }
  .submenu { position: static; width: auto; padding: 0 0 0 1rem; background: transparent; box-shadow: none; }
  .hero { min-height: calc(100svh - 72px); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
