:root {
  --ink: #1A1815;
  --paper: #FAF8F4;
  --paper-dim: #F1EDE5;
  --wine: #6B2737;
  --line: #DEDACE;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
nav { display: flex; gap: 36px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
nav a:hover, nav a.active { color: var(--wine); }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 9vw 6vw 7vw;
  max-width: 1280px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 18px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(38px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h1 em { font-style: italic; color: var(--wine); }
.hero p {
  font-size: 18px;
  color: #4a463f;
  max-width: 46ch;
  margin-bottom: 34px;
}
.cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.cta:hover { background: var(--wine); }

.photo-slot {
  aspect-ratio: 4/5;
  background: var(--paper-dim);
  border: 1px dashed #c9c3b4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a39b87;
  font-size: 13px;
  text-align: center;
  padding: 20px;
  border-radius: 3px;
  overflow: hidden;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }

.key-divider {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}
.key-divider div {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.key-divider div:not(:last-child) { margin-right: 3px; }

.page-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7vw 6vw 2vw;
}
.page-header .label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.page-header h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 0; }

section.split {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5vw 6vw 7vw;
  border-bottom: 1px solid var(--line);
}
section.split:last-of-type { border-bottom: none; }
section.split h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 30px;
}
section.split .label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
section.split .body p { margin-bottom: 16px; color: #4a463f; font-size: 16px; max-width: 60ch; }
section.split .body p:last-child { margin-bottom: 0; }

.simple-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 5vw 6vw 7vw;
}
.simple-page p { margin-bottom: 16px; color: #4a463f; font-size: 16px; }

footer {
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8a8474;
  border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  section.split { grid-template-columns: 1fr; gap: 20px; }
  nav { gap: 20px; }
}
