/* Accompanied Dental Treatment Holidays — shared stylesheet */

:root {
  --teal-deep: #0f5c56;
  --teal: #1a8a7f;
  --teal-light: #e4f3f1;
  --gold: #c98a3e;
  --gold-light: #f6e9d8;
  --terracotta: #d9764a;
  --cream: #fdfaf5;
  --ink: #1f2b29;
  --ink-soft: #4a5b58;
  --white: #ffffff;
  --border: #e3e0d6;
  --shadow: 0 10px 30px rgba(15, 92, 86, 0.08);
  --radius: 14px;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 1.15rem;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--teal-deep);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h3 { font-size: 1.6rem; }

p { margin: 0 0 1em; font-size: 1.15rem; }

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

img, svg { max-width: 100%; display: block; }

/* ---------- Placeholder image blocks ---------- */
.ph-img {
  background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
  border: 1px dashed var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 16px;
  min-height: 220px;
}

.ph-img.round {
  border-radius: 50%;
  min-height: 0;
  aspect-ratio: 1/1;
}

.ph-img small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.12;
  color: var(--teal-deep);
}

.brand .mark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  flex-shrink: 0;
  overflow: hidden;
}

.brand .mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand .brand-text .accent { color: var(--gold); }

nav.main-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

nav.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--teal-deep);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--cream) 100%);
  padding: 64px 0 60px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal); text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: var(--teal-deep);
  border-color: var(--teal-deep);
}
.btn-secondary:hover { background: var(--teal-light); text-decoration: none; }

/* ---------- Sections ---------- */
section {
  padding: 64px 0;
}

section.alt {
  background: var(--white);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}

.section-head p {
  color: var(--ink-soft);
}

/* ---------- Cards / grids ---------- */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-light);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--gold);
  font-weight: 700;
}

.stat .label {
  color: var(--ink-soft);
  font-size: 1.15rem;
}

/* ---------- Timeline / steps ---------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}

.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 29px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step-num {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 1;
}

/* ---------- Quote / testimonial ---------- */
.quote-block {
  background: var(--teal-deep);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

.quote-block cite {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 600;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--teal-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  margin-left: 12px;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item .faq-answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}

/* ---------- Contact / form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-details .detail {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-details .icon-badge {
  margin-bottom: 0;
  flex-shrink: 0;
}

form.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--cream);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.placeholder-note {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  color: #7a5323;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--teal-deep), var(--teal));
  color: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.cta-banner h2 { color: var(--white); }
.cta-banner p { color: var(--teal-light); max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #cdd8d6;
  padding: 48px 0 24px;
  margin-top: 40px;
}

footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

footer.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

footer.site-footer a {
  color: #cdd8d6;
}

footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.site-footer li { margin-bottom: 8px; }

footer.site-footer .fine-print {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #9aa6a4;
  text-align: center;
}

footer.site-footer .fine-print .placeholder {
  color: var(--gold);
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero .container,
  .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  nav.main-nav { width: 100%; justify-content: center; }
  footer.site-footer .footer-grid { grid-template-columns: 1fr; }
}
