:root {
  --background: #ffffff;
  --text: #24211d;
  --muted: #6f685e;
  --gold: #b57b16;
  --line: rgba(181, 123, 22, 0.62);
  --shadow: 0 30px 80px rgba(68, 49, 16, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 18%, rgba(225, 197, 127, 0.10), transparent 34%),
    var(--background);
  color: var(--text);
  font-family: "Didot", "Bodoni MT", "Bodoni 72", "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
  border-radius: 2px;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 44px 22px;
}

.business-card {
  width: min(100%, 900px);
  min-height: min(780px, calc(100vh - 88px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(38px, 6vw, 78px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  border: 1px solid rgba(181, 123, 22, 0.11);
}

.brand-logo {
  width: clamp(145px, 18vw, 225px);
  height: auto;
  object-fit: contain;
  margin-bottom: clamp(18px, 3vw, 30px);
  transition: transform 500ms ease, filter 500ms ease;
}

.brand-logo:hover {
  transform: translateY(-3px) scale(1.012);
  filter: drop-shadow(0 10px 18px rgba(181, 123, 22, 0.12));
}

.brand-header h1 {
  margin: 0;
  color: transparent;
  background: linear-gradient(105deg, #8d5a0d, #d8b45e 48%, #9b650f);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.55rem, 7vw, 4.8rem);
  font-weight: 400;
  letter-spacing: clamp(0.24em, 1.5vw, 0.42em);
  text-indent: clamp(0.24em, 1.5vw, 0.42em);
  line-height: 1;
}

.claim {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(0.83rem, 2.1vw, 1.2rem);
  letter-spacing: clamp(0.13em, 0.8vw, 0.28em);
  line-height: 1.8;
}

.claim span { color: var(--gold); padding: 0 0.3em; }

.ornament {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: clamp(30px, 5vw, 52px) 0;
  color: var(--gold);
}

.ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--line), transparent);
}

.ornament i { font-style: normal; font-size: 1rem; }

.contact h2 {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.contact-links { display: grid; gap: 12px; }

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text);
  font-size: clamp(0.96rem, 2vw, 1.08rem);
  letter-spacing: 0.06em;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-links a span { color: var(--gold); width: 1.2em; }

.contact-links a:hover { color: var(--gold); transform: translateY(-1px); }

.status {
  margin: clamp(38px, 5vw, 56px) 0 0;
  color: #8c857b;
  font-size: 0.88rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.footer {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  color: #8c857b;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer a:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(12px); }

.reveal.is-visible {
  animation: reveal 900ms cubic-bezier(.22, .8, .27, 1) forwards;
}

@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.legal-page {
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  min-height: auto;
  line-height: 1.75;
}

.legal-page h1,
.legal-page a { color: var(--gold); }

@media (max-width: 600px) {
  .page-shell { padding: 0; }
  .business-card {
    min-height: 100vh;
    border: 0;
    box-shadow: none;
    padding: 42px 24px 34px;
  }
  .claim { max-width: 320px; }
  .claim span { padding: 0 0.08em; }
  .footer-divider { display: none; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
