*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dent-white: #fafcfd;
  --dent-sky: #a8d4e8;
  --dent-mint: #c8ebe0;
  --dent-charcoal: #3a4248;
}

body.dent-body {
  font-family: 'Raleway', sans-serif;
  background: var(--dent-white);
  color: var(--dent-charcoal);
  line-height: 1.65;
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 500; }

.dent-tooth-band {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  background: linear-gradient(180deg, var(--dent-mint), var(--dent-white));
}

.dent-tooth {
  width: 28px;
  height: 36px;
  background: #fff;
  border-radius: 50% 50% 45% 45%;
  box-shadow: 0 2px 8px rgba(168, 212, 232, 0.5);
  position: relative;
}

.dent-tooth::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  background: #fff;
  border-radius: 0 0 50% 50%;
}

.dent-clinic-header {
  text-align: center;
  padding: 2rem 1.5rem;
}

.dent-clinic-header__tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dent-sky);
  font-weight: 600;
}

.dent-clinic-header__name {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin: 0.5rem 0;
  color: var(--dent-charcoal);
}

.dent-clinic-header__loc {
  font-family: 'Lora', serif;
  font-style: italic;
  color: #6a7379;
}

.dent-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 5% 2rem;
  border-bottom: 1px solid var(--dent-mint);
}

.dent-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--dent-mint);
  padding: 0.5rem 1rem;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
}

.dent-badge__icon {
  color: var(--dent-sky);
  font-weight: 700;
}

.dent-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5% 3rem;
}

.dent-appointment-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.dent-appointment-hero__copy h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--dent-charcoal);
}

.dent-hours {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--dent-mint);
  border-radius: 8px;
}

.dent-hours h3 { font-size: 1rem; margin-bottom: 0.35rem; }

.dent-form {
  background: #fff;
  border: 1px solid var(--dent-sky);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(168, 212, 232, 0.25);
}

.dent-form__title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-align: center;
}

.dent-form__field { margin-bottom: 0.85rem; }

.dent-form__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.dent-form__field input,
.dent-form__field textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--dent-sky);
  border-radius: 6px;
  font-family: inherit;
  background: var(--dent-white);
}

.dent-form__field input:focus,
.dent-form__field textarea:focus {
  outline: 2px solid var(--dent-mint);
}

.dent-form__field--check {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.45rem;
}

.dent-form__field--check input { width: auto; }
.dent-form__field--check label { flex: 1; font-weight: 400; font-size: 0.88rem; }

.dent-form__error { display: block; color: #c0392b; font-size: 0.78rem; min-height: 1rem; }

.dent-form__submit {
  width: 100%;
  background: var(--dent-sky);
  color: var(--dent-charcoal);
  border: none;
  padding: 0.75rem;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.dent-form__submit:hover { background: #8fc4dc; }

.dent-form__success {
  margin-top: 0.75rem;
  padding: 0.65rem;
  background: var(--dent-mint);
  border-radius: 6px;
  font-size: 0.88rem;
  text-align: center;
}

.dent-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.dent-service-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #fff, var(--dent-mint));
  border-radius: 8px;
}

.dent-service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.dent-service-card p { font-size: 0.88rem; color: #5a6268; }

.dent-location {
  text-align: center;
  padding: 2rem;
  background: var(--dent-mint);
  border-radius: 12px;
}

.dent-location h2 { margin-bottom: 1rem; }

.dent-location address {
  font-style: normal;
  line-height: 1.9;
}

.dent-location a { color: var(--dent-charcoal); }

.dent-legal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 5%;
  background: #eef5f8;
  font-size: 0.88rem;
}

.dent-legal h2 { font-size: 1rem; margin-bottom: 0.5rem; }

.dent-footer {
  text-align: center;
  padding: 1.25rem;
  font-size: 0.82rem;
  color: #6a7379;
}

.dent-footer nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.dent-footer a { color: var(--dent-charcoal); text-decoration: none; }

@media (max-width: 768px) {
  .dent-appointment-hero { grid-template-columns: 1fr; }
  .dent-services { grid-template-columns: 1fr; }
  .dent-legal { grid-template-columns: 1fr; }
}
