:root {
  color-scheme: dark;
  --charcoal: #25323a;
  --white: #eaeaea;
  --gold: #afa283;
  --muted: #b4babd;
  --line: rgb(175 162 131 / 25%);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  background: var(--charcoal);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 7px; border-radius: 2px; }
.landing {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0 clamp(24px, 5.2vw, 88px);
  background: radial-gradient(ellipse at 50% 42%, rgb(175 162 131 / 4%), transparent 65%);
}
.masthead, .footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.masthead { min-height: 100px; border-bottom: 1px solid var(--line); }
.masthead-name { font-size: 11px; letter-spacing: .23em; text-transform: uppercase; }
.status { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.status-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 56px 0 62px; }
.brand { position: relative; margin: 0; width: clamp(235px, 26vw, 340px); line-height: 0; }
.brand-art { display: block; width: 100%; overflow: visible; }
.hero-copy { animation-delay: 1.25s; }
.gold-rule { display: block; width: 30px; height: 1px; background: var(--gold); margin: 36px auto 24px; }
.tagline { font-size: clamp(16px, 1.5vw, 20px); font-weight: 300; letter-spacing: .075em; line-height: 1.7; margin: 0; }
.mobile-break { display: none; }
.contact { display: inline-flex; align-items: center; gap: 12px; margin-top: 32px; color: var(--gold); font-size: 12px; letter-spacing: .09em; padding: 5px; }
.contact-icon { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgb(175 162 131 / 50%); border-radius: 50%; transition: background .25s, border-color .25s, transform .25s; }
.contact-icon svg { width: 20px; height: 20px; }
.contact:hover .contact-icon { background: rgb(175 162 131 / 12%); border-color: var(--gold); transform: translateY(-2px); }
.footer { min-height: 78px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .06em; animation-delay: 1.45s; }
.footer a { padding: 12px 0; transition: color .2s; }
.footer a:hover { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.logo-inner { animation: appear 1.3s ease-out both; }
.logo-outer { animation: appear 1.7s .45s ease-out both; }
.logo-type { animation: appear 1.4s .85s ease-out both; }
/* Animate a wrapper so hovering never restarts the original opacity reveal. */
.logo-monogram image { pointer-events: none; }
.logo-hover-area { pointer-events: all; }
.logo-flourish { transform-box: fill-box; transform-origin: 50% 56%; }
.logo-trigger { position: absolute; top: .8772%; left: 16.1905%; width: 67.619%; height: 64.9123%; padding: 0; border: 0; background: transparent; cursor: pointer; touch-action: manipulation; border-radius: 6px; -webkit-tap-highlight-color: transparent; }
.logo-trigger:focus-visible { outline: 1px solid var(--gold); outline-offset: 8px; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .logo-monogram:hover .logo-flourish,
  .brand:has(.logo-trigger:hover) .logo-flourish { animation: monogram-flourish 1.3s ease-in-out; }
}
@media (prefers-reduced-motion: no-preference) {
  .brand.is-animating .logo-flourish { animation: monogram-flourish 1.3s ease-in-out; }
  .brand.is-resetting .logo-flourish { animation: none; }
}
@keyframes monogram-flourish {
  0%, 100% { transform: translateY(0) rotate(0); filter: brightness(1); }
  35% { transform: translateY(-12px) rotate(-2deg); filter: brightness(1.18); }
  65% { transform: translateY(2px) rotate(.6deg); filter: brightness(1.06); }
}
.entrance { animation-name: entrance; animation-duration: 1.2s; animation-timing-function: ease-out; animation-fill-mode: both; }
/* Keep the footer inside the page bounds throughout its entrance. */
.footer.entrance { animation-name: appear; }
@keyframes appear { from { opacity: 0; } to { opacity: 1; } }
@keyframes entrance { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
  .masthead { min-height: 82px; }
  .masthead-name { max-width: 130px; font-size: 9px; line-height: 1.8; }
  .status { font-size: 9px; gap: 7px; letter-spacing: .025em; }
  .hero { padding: 48px 0; }
  .brand { width: min(65vw, 275px); }
  .mobile-break { display: block; }
  .gold-rule { margin-top: 30px; }
  .contact { margin-top: 24px; }
  .footer { flex-direction: column; justify-content: center; gap: 0; padding: 19px 0 12px; font-size: 9px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
