/* =========================================================================
   Specimen Dental — "after" build.
   The same fictional practice, the same content, rebuilt the way we build.
   Nothing that a visitor can read is withheld from a crawler: every headline
   is text, every service is a real heading, every answer is on the page.
   ========================================================================= */

:root {
  --teal: #0E7C86;
  --teal-dark: #07474D;
  --teal-soft: #E8F2F2;
  --sand: #FBFAF7;
  --ink: #16202A;
  --ink-2: #33414E;
  --muted: #5E6A75;
  --line: #E6E3DB;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.specimen-flag {
  background: #16202A; color: #fff;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  text-align: center; padding: 7px 14px;
}

/* runs the full width of the page, like the flag above it — a centred box
   with a background of its own reads as a rendering fault, not a notice */
.specimen-note {
  background: #F2F3F5; color: #4A4F57; border-bottom: 1px solid #E1E3E7;
  font-size: 12.5px; line-height: 1.6;
  text-align: center; padding: 11px 14px;
}
.specimen-note span { display: block; max-width: 78ch; margin-inline: auto; }

.wrap { width: min(1000px, 90vw); margin-inline: auto; }

/* ---- header ---- */
.top { border-bottom: 1px solid var(--line); padding: 18px 0; }
.top .wrap { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-dark); margin-right: auto; text-decoration: none;
}
.wordmark span { display: block; font-size: 9.5px; letter-spacing: .3em; color: var(--muted); }
.top nav { display: flex; gap: 20px; flex-wrap: wrap; }
.top nav a { font-size: 13px; color: var(--muted); text-decoration: none; letter-spacing: .04em; }
.top nav a:hover { color: var(--teal); }

/* ---- hero: the headline is text, set to look like a headline ---- */
.hero {
  background: linear-gradient(180deg, var(--sand), #fff);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 9vw, 104px) 0;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.08; letter-spacing: -0.015em;
  color: var(--teal-dark); max-width: 14ch;
}
.hero p {
  margin-top: 20px; font-size: clamp(16px, 2.2vw, 19px);
  color: var(--muted); max-width: 46ch;
}
.hero .cta {
  display: inline-block; margin-top: 30px;
  background: var(--teal); color: #fff; text-decoration: none;
  padding: 15px 30px; border-radius: 4px;
  font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
}
.hero .cta:hover { background: var(--teal-dark); }

/* ---- sections ---- */
section { padding: clamp(44px, 7.5vw, 84px) 0; }
section + section { border-top: 1px solid var(--line); }
h2 {
  font-family: Georgia, "Times New Roman", serif; font-weight: normal;
  font-size: clamp(24px, 3.6vw, 34px); letter-spacing: -0.01em; color: var(--teal-dark);
}
.section-lead { margin-top: 12px; color: var(--muted); max-width: 56ch; }

/* ---- services: six headings, six answers, all of it text ---- */
.services {
  margin-top: clamp(26px, 4vw, 42px);
  display: grid; gap: clamp(20px, 3vw, 30px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.services article { border-top: 2px solid var(--teal-soft); padding-top: 18px; }
.services h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.services p { font-size: 15px; color: var(--muted); }

/* ---- practice info ---- */
.info { background: var(--sand); }
.info-grid {
  margin-top: clamp(24px, 3.5vw, 36px);
  display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.info h3 { font-size: 15px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 8px; }
.info p { font-size: 15.5px; color: var(--ink-2); }
.info a { color: var(--teal-dark); }

/* ---- questions, answered on the page ---- */
.faq { margin-top: clamp(26px, 4vw, 40px); display: grid; gap: 0; }
.faq > div { padding: clamp(18px, 2.6vw, 26px) 0; border-top: 1px solid var(--line); }
.faq > div:last-child { border-bottom: 1px solid var(--line); }
.faq h3 { font-size: 17.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.faq p { color: var(--muted); max-width: 62ch; }

/* ---- footer ---- */
.foot { padding: 26px 0; border-top: 1px solid var(--line); }
.foot p { font-size: 12.5px; color: var(--muted); text-align: center; }

@media (max-width: 620px) {
  .top .wrap { justify-content: center; }
  .wordmark { margin-right: 0; text-align: center; width: 100%; }
  .top nav { justify-content: center; width: 100%; }
}
