:root {
  --ink: #111a2e;
  --gold: #d1a25e;
  --paper: #f8f6f1;
  --muted: #6f716f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: 'DM Sans', sans-serif; }
.hero { min-height: 100svh; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 42%, #fff 0, var(--paper) 62%); }
.hero::before { content: ''; position: absolute; width: 45vw; height: 45vw; max-width: 560px; max-height: 560px; right: -13vw; top: -14vw; border: 1px solid rgba(209,162,94,.28); border-radius: 50%; }
.topbar { position: absolute; z-index: 2; top: 0; left: 0; width: 100%; padding: 34px 5vw; display: flex; align-items: center; justify-content: space-between; }
.brand, .contact, .scroll-hint { transition: transform .25s ease, color .25s ease; }
.brand img { display: block; width: clamp(82px, 9vw, 128px); height: auto; }
.contact { color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.contact span { color: var(--gold); font-size: 17px; margin-left: 7px; }
.hero-content { width: min(1100px, 90vw); position: absolute; left: 50%; top: 50%; transform: translate(-50%, -46%); text-align: center; }
.eyebrow { margin: 0 0 24px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; }
h1 { margin: 0; display: flex; flex-direction: column; align-items: center; line-height: .9; font-family: 'Playfair Display', serif; font-weight: 600; }
.title-main { font-size: clamp(3.6rem, 10.5vw, 10rem); letter-spacing: -.075em; }
.title-sub { display: flex; align-items: baseline; gap: clamp(12px, 2vw, 30px); margin-top: 8px; padding-left: .45em; font-family: 'DM Sans', sans-serif; font-size: clamp(2rem, 5.2vw, 5.2rem); font-weight: 500; letter-spacing: .12em; }
h1 em { color: var(--gold); font-family: 'Playfair Display', serif; font-size: .7em; font-style: italic; font-weight: 600; letter-spacing: -.04em; }
h1 b { font-weight: 600; letter-spacing: .08em; }
.title-sub::before, .title-sub::after { content: ''; width: clamp(24px, 5vw, 76px); height: 1px; background: var(--gold); opacity: .75; }
.intro { margin: 34px 0 0; color: var(--muted); font-size: clamp(14px, 1.5vw, 17px); line-height: 1.6; }
.scroll-hint { display: inline-flex; align-items: center; gap: 12px; margin-top: 55px; color: var(--ink); text-decoration: none; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.scroll-line { width: 42px; height: 1px; background: var(--gold); }
.scroll-hint:hover, .contact:hover { color: var(--gold); }
.hero-content { animation: reveal .9s cubic-bezier(.2,.8,.2,1) both; }
@keyframes reveal { from { opacity: 0; transform: translate(-50%, -39%) scale(.97); } to { opacity: 1; transform: translate(-50%, -46%) scale(1); } }
.corner-note { position: absolute; bottom: 34px; left: 5vw; color: #9a9b98; font-size: 10px; letter-spacing: .18em; }
.corner-note span { color: var(--gold); padding: 0 8px; }
@media (max-width: 600px) {
  .topbar { padding: 24px 7vw; }
  .hero-content { transform: translate(-50%, -43%); }
  .eyebrow { margin-bottom: 20px; font-size: 9px; letter-spacing: .2em; }
  .title-main { font-size: clamp(3.4rem, 17vw, 5.5rem); }
  .title-sub { gap: 9px; padding-left: .35em; font-size: clamp(1.45rem, 8vw, 2.4rem); letter-spacing: .08em; }
  .intro { margin-top: 26px; font-size: 13px; }
  .scroll-hint { margin-top: 42px; font-size: 9px; }
  .corner-note { bottom: 24px; left: 7vw; font-size: 8px; }
  .contact { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
