:root {
  --ink: #2B211C;
  --bg: #FAF6F1;
  --accent: #7A3B4E;
  --accent-dark: #5C2C3B;
  --sand: #EFE6DA;
  --line: #DCCFC0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
}

h1, h2 {
  font-family: 'Cormorant', serif;
  font-weight: 600;
  margin: 0 0 12px;
}

h1 { font-size: clamp(36px, 6vw, 56px); line-height: 1.1; }
h2 { font-size: 30px; }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
}

.wordmark { font-family: 'Cormorant', serif; font-size: 22px; font-weight: 600; }
.wordmark .dot { color: var(--accent); }

.nav-cta {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 64px 6vw;
  align-items: center;
}

.arch { width: 140px; height: auto; margin-bottom: 8px; }

.hero-sub {
  max-width: 42ch;
  color: #55483F;
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  font-size: 15px;
  font-family: 'Work Sans', sans-serif;
  cursor: pointer;
}

.btn:hover { background: var(--accent-dark); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ph {
  aspect-ratio: 1;
  background: var(--sand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A6957F;
  font-size: 13px;
}

.ph-1, .ph-4 { margin-top: 24px; }

.services, .booking {
  padding: 48px 6vw;
  border-top: 1px solid var(--line);
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  max-width: 480px;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price { color: #8A7A6B; }

.edit-note {
  margin-top: 20px;
  font-size: 13px;
  color: #A6957F;
  font-style: italic;
}

form {
  max-width: 560px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #55483F;
}

.optional { color: #A6957F; font-weight: 400; }

input, select, textarea {
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

#form-status { font-size: 14px; min-height: 20px; }
#form-status.ok { color: #3E5C3A; }
#form-status.err { color: #8A3B3B; }

.site-footer {
  padding: 32px 6vw 48px;
  color: #A6957F;
  font-size: 13px;
}

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; padding: 40px 6vw; }
  .field-row { grid-template-columns: 1fr; }
}
