:root {
  --bg: #0c1117;
  --bg-elev: #131a22;
  --ink: #e8e4dc;
  --muted: #9a9488;
  --gold: #c9a86a;
  --gold-soft: rgba(201, 168, 106, 0.16);
  --line: rgba(232, 228, 220, 0.1);
  --radius: 18px;
  --max: 1080px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(201, 168, 106, 0.12), transparent 55%),
    radial-gradient(800px 500px at -10% 30%, rgba(90, 120, 160, 0.12), transparent 50%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.site-header,
main,
.site-footer { position: relative; z-index: 1; }

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-wordmark {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
  border-radius: 6px;
}

.brand-wordmark.sm {
  height: 40px;
  max-width: min(220px, 55vw);
}

.about-lead {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

.about-seal {
  width: min(200px, 55vw);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.contact-seal {
  display: block;
  width: 96px;
  height: auto;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 450;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible { color: var(--ink); }

.nav-cta {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink) !important;
}

.nav-cta:hover {
  border-color: rgba(201, 168, 106, 0.45);
  background: var(--gold-soft);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.hero h1 {
  margin: 0;
  max-width: 14ch;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lede {
  margin: 1.4rem 0 0;
  max-width: 38rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold);
  color: #16120c;
}

.btn-primary:hover { filter: brightness(1.05); }

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(201, 168, 106, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.hero-rule {
  margin-top: 4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0.55;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem 4.5rem;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.about-grid {
  display: grid;
  gap: 1.5rem 3rem;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }
}

.about h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.about-copy p:last-child { margin-bottom: 0; }

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .cards { grid-template-columns: 1fr 1fr; }
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 55%), var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(201, 168, 106, 0.35);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card:hover,
  .btn:active { transform: none; }
}

.card-num {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 550;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.98rem;
}

.contact { padding-bottom: 5rem; }

.contact-panel {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.4rem 1.6rem;
  background:
    radial-gradient(500px 240px at 100% 0%, var(--gold-soft), transparent 60%),
    var(--bg-elev);
  text-align: center;
}

.contact-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-panel > p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: var(--muted);
  font-weight: 300;
}

.contact-panel .btn { margin-bottom: 1.25rem; }

.locale {
  margin: 0 !important;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

@media (max-width: 560px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 3rem; }
}

.about-copy .note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
  opacity: 0.9;
}


@media (min-width: 960px) {
  .cards.cards-3 { grid-template-columns: 1fr 1fr 1fr; }
}
