:root {
  --bg: #f6f1ea;
  --paper: #fffdf7;
  --ink: #191712;
  --muted: #746c62;
  --line: #dfd2c0;
  --accent: #8f302d;
  --accent-soft: #eadad6;
  --shadow: 0 24px 70px rgba(55, 38, 22, 0.16);
  --soft-shadow: 0 10px 28px rgba(55, 38, 22, 0.12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { min-height: 100%; }
body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(143, 48, 45, 0.14), transparent 28rem),
    radial-gradient(circle at 85% 20%, rgba(223, 210, 192, 0.85), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}

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

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(110deg, transparent 0 44%, rgba(25, 23, 18, 0.055) 44.3% 44.7%, transparent 45% 100%),
    linear-gradient(155deg, transparent 0 52%, rgba(25, 23, 18, 0.045) 52.2% 52.5%, transparent 52.8% 100%);
  background-size: 190px 190px, 260px 260px;
}

.page-shell {
  width: min(1180px, 100%);
  min-height: 100vh;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 32px 20px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 28px;
  position: relative;
}

.hero-copy,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  min-height: 650px;
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-copy::after {
  content: 'DV';
  position: absolute;
  left: clamp(28px, 5vw, 64px);
  bottom: -0.42em;
  z-index: -1;
  font-family: var(--serif);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
  color: rgba(143, 48, 45, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border: 6px solid var(--paper);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small,
.eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
  margin: auto 0 16px;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  letter-spacing: -0.055em;
}

.lead {
  max-width: 680px;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1rem;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.contact-panel {
  padding: clamp(24px, 3vw, 34px);
  align-self: stretch;
}

.contact-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.04em;
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 5px 14px rgba(55, 38, 22, 0.045);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.link-list a:hover,
.link-list a:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.link-list span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-list strong {
  text-align: right;
  font-size: 0.98rem;
  word-break: break-word;
}

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; gap: 80px; }
}

@media (max-width: 560px) {
  .page-shell { padding: 16px; }
  .hero-copy,
  .contact-panel { border-radius: 24px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .link-list a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .link-list strong { text-align: left; }
}
