/* Palette matches your home page */
:root{
  --bg:#f7f1e6;        /* warm paper */
  --ink:#2a1f1a;       /* text */
  --muted:#7a6d66;     /* subtle text */
  --line:#e8e2d8;      /* hairline */
  --accent:#3a2b24;    /* buttons */
}

html,body{background:var(--bg);color:var(--ink)}
.container{max-width:980px;margin:0 auto;padding:0 22px}

/* Title + subtitle like Wix */
.contact-page{padding:42px 0 60px;border-top:1px solid var(--line)}
.contact-title{
  font-family:"Playfair Display",serif;
  font-size:56px; line-height:1.08; letter-spacing:-0.3px;
  text-align:center; margin:0 0 6px;
}
.contact-subtitle{
  text-align:center; color:var(--muted);
  margin:0 0 34px; font-size:14px;
}

/* Form: no panel, just underline inputs */
.contact-form{background:transparent;border:0;padding:0}

/* Two-column grid for first/last name like Wix */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:38px;margin-bottom:6px}
.field{margin-bottom:26px}
.field label{
  display:block; color:var(--muted); font-size:14px; margin-bottom:10px;
}

/* Underline-only inputs */
.field input,.field textarea{
  width:100%;
  border:none; border-bottom:1px solid var(--ink);
  background:transparent; color:var(--ink);
  padding:10px 2px 12px; font-size:16px; border-radius:0;
  outline:none; box-shadow:none; transition:border-color .2s ease;
}
.field textarea{min-height:120px; resize:vertical}
.field input:focus,.field textarea:focus{border-bottom-color:#bfae9e}

/* Submit area: top divider line + button */
.actions{margin-top:22px; padding-top:18px; border-top:1px solid var(--line)}
.btn{
  background:var(--accent); color:#fff; border:0;
  padding:12px 22px; border-radius:8px; font-weight:600; cursor:pointer;
}

/* Responsive */
@media (max-width:760px){
  .contact-title{font-size:44px}
  .grid-2{grid-template-columns:1fr;gap:0}
}

/* ===== Thank You page ===== */
.thanks-hero{background:var(--bg); padding:48px 0 84px}
.thanks-card{
  max-width:1024px; margin:12px auto; padding:48px 56px 40px;
  background:#fff; border:1px solid var(--line); border-radius:16px;
  text-align:center;
}
.thanks-icon{display:flex; justify-content:center; margin-top:4px; margin-bottom:10px}
.thanks-icon svg{width:56px; height:56px; color:#2aa84a} /* soft green */
.thanks-title{
  font-family:"Playfair Display",serif; font-size:42px; line-height:1.1;
  margin:10px 0 12px; letter-spacing:-0.2px;
}
.thanks-subtitle{color:var(--muted); margin:0 0 18px}
.thanks-actions{
  display:flex; justify-content:center; gap:12px;
  margin-top:18px; padding-top:18px; border-top:1px solid var(--line);
}
.btn.btn-ghost{
  background:transparent; color:var(--accent);
  border:1px solid var(--line);
}
@media (max-width:560px){
  .thanks-title{font-size:36px}
  .thanks-actions{flex-direction:column}
}
