@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  /* Sharp luxury: black / white / steel */
  --bg0: #000000;
  --bg1: #0a0a0a;
  --bg2: #111111;
  --ink: rgba(255, 255, 255, 0.95);
  --muted: rgba(255, 255, 255, 0.68);
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.18);
  --shine: rgba(255, 255, 255, 0.6);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.75);
  --max: 1200px;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.nowrap {
  white-space: nowrap;
}

.container {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.brand-sigil {
  width: 24px;
  height: 24px;
  display: block;
  fill: rgba(255, 255, 255, 0.95);
}

.brand-text {
  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.brand-sub {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 200ms ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 200ms ease;
}

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

.nav a:hover::after {
  width: 100%;
}

.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tag {
  border: 1px solid var(--border);
  background: transparent;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.kicker {
  margin: 0 0 16px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 400;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.brand-mark-large {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.brand-sigil-large {
  width: 36px;
  height: 36px;
  display: block;
  fill: rgba(255, 255, 255, 0.95);
}

.hero-brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text-large {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-sub-large {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-space {
  /* Empty space where image was */
}

.hero-description {
  margin: 0 0 40px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 58ch;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.accent {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.lead {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 55ch;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.btn {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg0);
}

.btn.primary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.fineprint {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-art {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.silhouette {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}

.silhouette--secondary {
  margin-top: 24px;
  opacity: 0.88;
}

.silhouette-frame {
  fill: transparent;
  stroke: var(--border);
  stroke-width: 1;
}

.silhouette-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.silhouette-fill {
  fill: rgba(0, 0, 0, 0.7);
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

.silhouette-line.thin {
  stroke-width: 3.5;
  opacity: 0.85;
}

.silhouette-line.faint {
  opacity: 0.3;
  stroke-width: 3;
}

.art-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.micro {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.micro-strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.section {
  padding: 80px 0;
}

.section h2 {
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.section-muted {
  background: var(--bg1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-lead {
  margin: 0 0 40px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 70ch;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.about-content {
  max-width: 80ch;
  margin-top: 20px;
}

.about-content p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.02em;
}

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

.consultation-section {
  text-align: center;
}

.consultation-section .section-lead {
  margin-bottom: 48px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border: 1px solid var(--border);
  background: transparent;
  padding: 32px 24px;
  transition: background 200ms ease, border-color 200ms ease;
}

.card:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.24);
}

.card h3 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.bullet {
  border: 1px solid var(--border);
  background: transparent;
  padding: 24px;
  color: var(--ink);
  line-height: 1.7;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 200ms ease, border-color 200ms ease;
}

.bullet:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.24);
}

.consultation-section {
  text-align: center;
}

.consultation-section .section-lead {
  margin-bottom: 48px;
}

.cta-panel {
  border: 1px solid var(--border);
  background: transparent;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.4;
}

.site-footer {
  padding: 60px 0 80px;
}

.footer-inner {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bullets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 48px);
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .cta-panel {
    padding: 32px 24px;
  }
}
