:root {
  --maroon: #6b1f2a;
  --maroon-dark: #4a1620;
  --cream: #faf6f0;
  --cream-alt: #f1e9de;
  --gold: #b98b4e;
  --text: #2a2019;
  --text-soft: #56463f;
  --radius-pill: 24px;
  --wrap-width: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--maroon-dark);
  margin: 0 0 0.5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.7rem; margin-top: 0; }

a { color: var(--maroon); }

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--maroon-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.brand {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header nav a {
  color: #f1e3d3;
  text-decoration: none;
  margin-left: 24px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.site-header nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream-alt), var(--cream));
  padding: 56px 0 40px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-photo {
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 24px rgba(74, 22, 32, 0.25);
  flex-shrink: 0;
}

.hero-text { flex: 1; min-width: 240px; }

.tagline {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 46ch;
}

/* Intro */
.intro { padding: 8px 0 24px; }
.intro p { font-size: 1.05rem; }

/* Credentials */
.credentials {
  background: var(--maroon);
  color: #fbeee5;
  padding: 48px 0;
}

.credentials h2 { color: #fff; }

.credentials ul {
  padding-left: 1.2em;
  margin: 0 0 1.2em;
}

.credentials li { margin-bottom: 0.6em; }

.credentials .discretion {
  font-style: italic;
  color: var(--gold);
  margin-top: 1.4em;
}

/* Contact */
.contact { padding: 48px 0 56px; }

.form-success {
  background: #e7f3e6;
  border: 1px solid #a8d5a2;
  color: #2f5c2a;
  padding: 12px 16px;
  border-radius: 8px;
}

.form-error {
  background: #fbe9e7;
  border: 1px solid #e6a8a0;
  color: #7a2a1e;
  padding: 12px 16px;
  border-radius: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row input { flex: 1; min-width: 200px; }

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #d8c9bb;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form button {
  align-self: flex-start;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.15s ease;
}

.contact-form button:hover { background: var(--maroon-dark); }

/* Footer */
.site-footer {
  background: var(--cream-alt);
  padding: 40px 0 32px;
  text-align: center;
  border-top: 1px solid #e3d4c4;
}

.wim-badge { display: inline-block; margin-bottom: 24px; }
.wim-badge img { height: 40px; width: auto; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}

.social-links img { width: 32px; height: 32px; border-radius: 6px; }

.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.partners img {
  height: 40px;
  width: auto;
  filter: grayscale(15%);
}

.copyright {
  color: var(--text-soft);
  font-size: 0.85rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .hero-inner { flex-direction: column; text-align: center; }
  .tagline { max-width: none; }
  .form-row { flex-direction: column; }
}
