:root {
  --ink: #1a1a1a;
  --ink-muted: #4a4a4a;
  --gold: #8b6914;
  --gold-light: #c9a227;
  --cream: #f8f6f1;
  --white: #ffffff;
  --border: #e5e0d8;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
}

.page {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.subtitle {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.content {
  display: grid;
  gap: 2rem;
  align-items: start;
}

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

.photo-wrap {
  background: var(--white);
  padding: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

.photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact {
  font-size: 1rem;
  color: var(--ink-muted);
}

.contact p {
  margin-bottom: 0.35rem;
}

.contact a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
}

.contact a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.services {
  list-style: none;
}

.services li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
}

.services li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title::before {
  content: '⚖️';
}

.directions {
  list-style: none;
  margin-top: 0.5rem;
}

.directions li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.directions li:last-child {
  border-bottom: none;
}

.directions li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.directions strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.directions span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
