:root {
  --bg: #e7ddd5;
  --bg-soft: rgba(252, 249, 246, 0.70);
  --panel: rgba(255,255,255,0.82);
  --border: rgba(128, 107, 95, 0.20);
  --text: #433731;
  --muted: #75655c;
  --accent: #ad9588;
  --accent-deep: #8c7568;
  --shadow: 0 22px 60px rgba(94, 74, 63, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(238,230,223,0.82)),
    linear-gradient(115deg, transparent 10%, rgba(139,117,104,0.10) 14%, transparent 18%, transparent 42%, rgba(151,129,117,0.08) 46%, transparent 51%),
    linear-gradient(152deg, transparent 24%, rgba(179,157,145,0.10) 29%, transparent 34%, transparent 63%, rgba(137,114,102,0.09) 68%, transparent 73%),
    linear-gradient(95deg, rgba(255,255,255,0.32), rgba(225,214,206,0.32)),
    var(--bg);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,0.8), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(255,255,255,0.55), transparent 22%),
    radial-gradient(circle at 78% 78%, rgba(255,255,255,0.45), transparent 20%);
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 56px;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup img {
  width: clamp(220px, 28vw, 320px);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 8ch;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.hero-card,
.form-card {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border-radius: 34px;
  overflow: hidden;
  margin-bottom: 26px;
}

.hero-copy {
  padding: 58px 46px;
}

.body-copy,
.section-heading p,
label,
input,
textarea,
button,
a {
  font-size: 1rem;
  line-height: 1.7;
}

.body-copy {
  max-width: 52ch;
  color: var(--muted);
  margin: 0 0 28px;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.primary-button {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(122, 102, 89, 0.22);
}

.secondary-button {
  background: rgba(255,255,255,0.72);
  color: var(--text);
  border-color: var(--border);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  position: relative;
  min-height: 420px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.16), rgba(160,138,126,0.18)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.78), rgba(234,226,220,0.36) 42%, rgba(177,158,147,0.15) 80%);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.32);
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(248,243,239,0.44));
  box-shadow: 0 18px 34px rgba(108, 90, 79, 0.12);
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

.form-card {
  border-radius: 30px;
  padding: 42px;
}

.section-heading {
  max-width: 60ch;
  margin-bottom: 26px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 0;
}

.message {
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
}

.message.success {
  background: rgba(219, 236, 222, 0.65);
}

.message.error {
  background: rgba(244, 220, 220, 0.72);
}

.appointment-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(128, 107, 95, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.78);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(140, 117, 104, 0.6);
  box-shadow: 0 0 0 4px rgba(173, 149, 136, 0.14);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-button {
  justify-self: start;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 18px 14px 40px;
  }

  .hero-copy,
  .form-card {
    padding: 28px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .submit-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }
}
