:root {
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --text: #2a2622;
  --muted: #5c5650;
  --accent: #8b7355;
  --accent-soft: rgba(139, 115, 85, 0.12);
  --line: rgba(42, 38, 34, 0.08);
  --shadow: 0 12px 40px rgba(42, 38, 34, 0.06);
  --radius: 20px;
  --font-sans: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 115, 85, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(180, 160, 130, 0.06), transparent);
}

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}

header.hero {
  text-align: center;
  padding: 1rem 0 1.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 32em;
  margin: 0 auto;
}

.photo-block {
  margin: 1.25rem auto 2.5rem;
  max-width: 420px;
}

.photo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
}

.contact-widget {
  margin: 0 auto 2.75rem;
  max-width: 420px;
}

.contact-widget__inner {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.4rem;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(42, 38, 34, 0.08), 0 0 0 1px rgba(139, 115, 85, 0.06);
  border-top: 3px solid var(--accent);
}

.contact-widget__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.02em;
}

.contact-widget__lead {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

section {
  margin-bottom: 2.75rem;
}

h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card > p:first-of-type {
  margin-top: 0;
}

.card.photo-card {
  padding: 1.5rem 1.35rem;
  overflow: hidden;
}

.card.photo-card .photo-img {
  border-radius: 0.875rem;
  box-shadow: none;
}

ul.clean {
  margin: 0;
  padding-left: 1.15rem;
}

ul.clean li {
  margin-bottom: 0.5rem;
}

ul.clean li:last-child {
  margin-bottom: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: var(--accent-soft);
  color: var(--text);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
}

.muted {
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 0;
  margin-bottom: 0;
}

.card .muted:last-child {
  margin-bottom: 0;
}

section > .muted {
  margin-bottom: 0;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-widget .cta-row {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(42, 38, 34, 0.15);
}

.btn.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(42, 38, 34, 0.2);
  color: var(--bg);
}

.btn.btn-ghost {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn.btn-ghost:hover {
  border-color: rgba(139, 115, 85, 0.35);
  color: var(--text);
}

address {
  font-style: normal;
  line-height: 1.6;
}

.notice {
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-top: 1rem;
}

footer {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.88rem;
  color: var(--muted);
}

footer .muted {
  margin-top: 0.5rem;
}

@media (min-width: 540px) {
  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    flex: 1;
    min-width: 200px;
  }
}
