:root {
  color-scheme: light;
  --ink: #415b25;
  --ink-deep: #243716;
  --ink-soft: #59634e;
  --gold: #b89545;
  --gold-soft: #eadca1;
  --cream: #f7f3e9;
  --paper: #fffefb;
  --line: rgba(65, 91, 37, 0.16);
}

* { box-sizing: border-box; }

html { min-width: 320px; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 86%, rgba(184, 149, 69, 0.14), transparent 22rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page-shell {
  width: min(1480px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 78px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.site-header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(65, 91, 37, .13);
  border-radius: 50%;
  background: white;
}

.brand-mark img {
  position: absolute;
  width: 108px;
  height: 108px;
  max-width: none;
  left: -28px;
  top: -30px;
}

.brand-copy { display: grid; line-height: 1; }

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.brand-copy strong span { color: var(--gold); }

.brand-copy small {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 149, 69, 0.13);
  animation: pulse 2.6s ease-out infinite;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  padding: clamp(58px, 7vw, 104px) 0;
}

.hero-copy { max-width: 710px; }

.eyebrow {
  margin: 0 0 25px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span { margin: 0 8px; color: var(--gold-soft); }

h1 {
  margin: 0;
  max-width: 690px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 em { color: var(--gold); font-weight: 400; }

.intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: white;
  background: var(--ink-deep);
  box-shadow: 0 14px 26px rgba(36, 55, 22, 0.15);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-action:hover { background: var(--ink); transform: translateY(-2px); }
.primary-action:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 4px; }

.actions p {
  max-width: 170px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(48px, 6vw, 74px);
  border-top: 1px solid var(--line);
}

.locations article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 20px 14px 0 0;
}

.locations article + article { padding-left: 18px; border-left: 1px solid var(--line); }

.location-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-style: italic;
}

.locations div { display: grid; min-width: 0; }
.locations small { color: var(--ink-soft); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.locations strong { margin-top: 4px; overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }

.brand-stage {
  isolation: isolate;
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 240px 240px 24px 24px;
  background: linear-gradient(150deg, #edf0df 0%, #f8f1d7 46%, #e7d9a5 100%);
  box-shadow: 0 36px 76px rgba(47, 65, 28, 0.17);
}

.brand-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 45% 18%, rgba(255,255,255,.75), transparent 28%),
    linear-gradient(155deg, rgba(255,255,255,.38), transparent 45%);
}

.stage-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.18;
  background-image: linear-gradient(rgba(65,91,37,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(65,91,37,.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 35%, black 72%, transparent);
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(65, 91, 37, 0.22);
  border-radius: 50%;
}

.orbit-one { width: 440px; height: 440px; }
.orbit-two { width: 330px; height: 330px; border-style: dashed; animation: rotate 38s linear infinite; }

.monogram-card {
  width: min(320px, 68%);
  padding: 28px 26px 24px;
  border: 1px solid rgba(65,91,37,.15);
  border-radius: 180px 180px 14px 14px;
  color: var(--ink-deep);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
  text-align: center;
}

.official-logo {
  position: relative;
  display: block;
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 8px auto 0;
  overflow: hidden;
}

.official-logo img {
  position: absolute;
  width: 210.5%;
  height: 210.5%;
  max-width: none;
  left: -56.6%;
  top: -60.5%;
}

.micro-label {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.monogram-card p {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.3;
}

.signature {
  position: absolute;
  right: 32px;
  bottom: 28px;
  margin: 0;
  color: rgba(36,55,22,.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  text-align: right;
}

.signature span { display: block; margin-top: 5px; color: var(--ink); font-family: Inter, ui-sans-serif, sans-serif; font-size: 8px; font-style: normal; letter-spacing: 0.18em; text-transform: uppercase; }

footer {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p { margin: 0; }

@keyframes pulse { 60%, 100% { box-shadow: 0 0 0 11px rgba(184, 149, 69, 0); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 54px; }
  .hero-copy { max-width: 760px; }
  .brand-stage { width: min(600px, 100%); min-height: 540px; justify-self: center; }
}

@media (max-width: 640px) {
  .page-shell { padding: 0 20px; }
  .site-header { min-height: 94px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand-mark img { width: 92px; height: 92px; left: -24px; top: -25px; }
  .brand-copy strong { font-size: 23px; }
  .status { max-width: 105px; line-height: 1.45; letter-spacing: 0.09em; }
  .hero { gap: 50px; padding: 46px 0 52px; }
  h1 { font-size: clamp(44px, 13vw, 66px); }
  .actions { align-items: flex-start; flex-direction: column; }
  .actions p { max-width: none; }
  .locations { grid-template-columns: 1fr; }
  .locations article { padding: 17px 0; }
  .locations article + article { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .brand-stage { min-height: 480px; border-radius: 180px 180px 20px 20px; }
  .orbit-one { width: 370px; height: 370px; }
  .orbit-two { width: 285px; height: 285px; }
  .monogram-card { width: 76%; }
  .signature { right: 22px; bottom: 20px; }
  footer { min-height: 76px; }
}

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