:root {
  --ink: #171717;
  --muted: #45413d;
  --paper: #fbfaf7;
  --cream: #f5f1e9;
  --cream-light: #f8f4ed;
  --gold: #b58b47;
  --line: #ddd6cb;
  --footer: #171717;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  padding: 0 6vw;
  background: #fff;
}
.wordmark, .footer-wordmark {
  letter-spacing: .09em;
  font-weight: 500;
}
.wordmark { font-size: clamp(2rem, 3vw, 3rem); }

/* Plain cream banner: no image dependency */
.hero {
  width: 100%;
  height: 120px;
  background: var(--cream);
}

.section { padding-left: 6vw; padding-right: 6vw; }
.about-section {
  min-height: 310px;
  padding-top: 28px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 56px;
  align-items: center;
  background: #fff;
}
.gold-line {
  display: block;
  width: 46px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}
h1, h2 {
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.05;
}
h1 { font-size: clamp(2rem, 3vw, 2.9rem); }
h2 { font-size: clamp(1.9rem, 2.8vw, 2.7rem); }
p {
  margin: 0 0 9px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.93rem, 1.05vw, 1.05rem);
  line-height: 1.42;
}
.about-copy p { max-width: 690px; }
.quote-card {
  background: linear-gradient(145deg, #faf8f2, #f3eee5);
  min-height: 225px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
}
.quote-card blockquote {
  margin: 0;
  font-style: italic;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.28;
}
.quote-line {
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin: 18px 0 14px;
}
.quote-signature { letter-spacing: .18em; font-size: .95rem; }

.contact-section {
  min-height: 245px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 54px;
  background: var(--cream);
  align-items: center;
}
.contact-intro p { max-width: 420px; }
.contact-form { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #d6d0c7;
  background: rgba(255,255,255,.92);
  padding: 10px 13px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  color: var(--ink);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 66px; resize: vertical; }
.button {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  padding: 11px 24px;
  min-height: 40px;
  font: inherit;
  font-size: .98rem;
}
.button:hover { background: #000; }
.contact-form .button { justify-self: start; margin-top: 2px; }
.form-message { font-family: Arial, Helvetica, sans-serif; padding: 9px 12px; margin-bottom: 8px; font-size: .9rem; }
.form-message.success { background: #edf5eb; }
.form-message.error { background: #f8ece9; }
.hp { position: absolute; left: -9999px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.site-footer {
  min-height: 72px;
  padding: 18px 6vw;
  background: var(--footer);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.footer-wordmark { font-size: 1.65rem; }
.site-footer nav { display: flex; gap: 28px; font-family: Arial, Helvetica, sans-serif; font-size: .78rem; }
.site-footer nav a { opacity: .88; }
.site-footer nav a:hover { opacity: 1; }
.copyright { justify-self: end; font-family: Arial, Helvetica, sans-serif; font-size: .74rem; opacity: .85; }

/* Legal pages */
.legal-page { min-height: calc(100vh - 160px); padding: 48px 6vw 70px; background: #fff; }
.legal-page .inner { max-width: 850px; }
.legal-page h1 { margin-bottom: 22px; }
.legal-page h2 { margin-top: 28px; font-size: 1.5rem; }
.legal-page p, .legal-page li { font-family: Arial, Helvetica, sans-serif; line-height: 1.6; font-size: .98rem; color: var(--muted); }
.legal-page ul { padding-left: 20px; }

/* Large desktop: keep the full homepage within one typical browser viewport */
@media (min-width: 900px) and (min-height: 760px) {
  body.homepage { min-height: 100vh; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; padding: 0 22px; }
  .hero { height: 86px; }
  .section { padding-left: 22px; padding-right: 22px; }
  .about-section, .contact-section { grid-template-columns: 1fr; gap: 24px; }
  .about-section { padding-top: 34px; padding-bottom: 34px; }
  .contact-section { padding-top: 30px; padding-bottom: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-card { min-height: 210px; }
  .site-footer { grid-template-columns: 1fr; text-align: left; padding: 28px 22px; }
  .site-footer nav { flex-wrap: wrap; gap: 16px 22px; }
  .copyright { justify-self: start; }
}
