@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f8f6f2;
  --bg-accent: #f0e7dd;
  --ink: #1c1b18;
  --muted: #6a645d;
  --line: rgba(28, 27, 24, 0.12);
  --accent: #b48d5b;
  --accent-strong: #a1753f;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(28, 27, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0%, var(--bg) 55%, #efe7dd 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 80vh;
  padding: 36px clamp(20px, 5vw, 72px) 64px;
  display: flex;
  flex-direction: column;
  gap: 72px;
  background: linear-gradient(135deg, rgba(244, 236, 227, 0.9), rgba(248, 246, 242, 0.8));
  border-bottom: 1px solid var(--line);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  color: var(--muted);
}

.nav-links a:hover,
.cta:hover {
  color: var(--accent-strong);
}

.cta {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.hero-content {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.subhead {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(180, 141, 91, 0.25);
}

.button.ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

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

.section {
  padding: 80px clamp(20px, 6vw, 96px);
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.about {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.doctor,
.studio {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.section-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 520px;
}

.highlights {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.highlight {
  padding: 16px 20px;
  border-radius: 16px;
  background: var(--bg-accent);
  color: var(--muted);
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 24px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 16px 35px rgba(28, 27, 24, 0.08);
}

.card p {
  color: var(--muted);
  margin: 0;
}

.cta-section {
  background: linear-gradient(120deg, #f3ede5, #f9f7f3);
}

.cta-panel {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  padding: 40px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cta-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
}

.footer {
  padding: 32px clamp(20px, 6vw, 96px) 56px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 720px) {
  .nav {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    gap: 48px;
  }
}
