:root {
  --ink: #1b2d2a;
  --muted: #60736f;
  --forest: #17473f;
  --forest-deep: #0d342f;
  --green: #2f7469;
  --sage: #c8ded6;
  --stone: #eee9df;
  --copper: #c87c5c;
  --copper-light: #e6c0ae;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #dce5e2;
  --shadow: 0 24px 70px rgba(10, 47, 42, 0.2);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-geist-sans), Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 16px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--forest);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 850;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px 11px 11px 3px;
  background: var(--copper);
  color: var(--white);
  font-weight: 900;
}

.header-link {
  color: var(--white);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: center;
  padding: 122px 0 62px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("../images/peoria-dental-hero.jpg");
  background-position: center 52%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(13, 52, 47, 0.98) 0%,
      rgba(13, 52, 47, 0.93) 44%,
      rgba(13, 52, 47, 0.57) 72%,
      rgba(13, 52, 47, 0.44) 100%
    ),
    linear-gradient(180deg, rgba(13, 52, 47, 0.14), rgba(13, 52, 47, 0.61));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(365px, 0.8fr);
  gap: clamp(38px, 6vw, 74px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.closing-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.25vw, 4.95rem);
}

.hero h1 span {
  color: #e9d2c3;
}

.domain-name {
  display: inline-block;
  max-width: 100%;
  margin: 21px 0 0;
  padding-bottom: 7px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.62);
  font-size: clamp(1.03rem, 1.7vw, 1.38rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 750;
}

.offer-card {
  position: relative;
  padding: clamp(26px, 3.5vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.offer-card::before {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e1f1e8;
  color: #246448;
  content: "Available";
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.offer-label {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.offer-card h2 {
  max-width: 76%;
  margin: 0;
  font-size: clamp(1.03rem, 1.55vw, 1.28rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  margin: 20px 0 3px;
  color: var(--forest);
  font-size: clamp(3rem, 5vw, 4.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.price span {
  padding-top: 7px;
  color: var(--copper);
  font-size: 0.42em;
}

.price-note {
  margin: 12px 0 20px;
  color: var(--muted);
}

.offer-actions {
  display: grid;
  gap: 10px;
}

.offer-actions form {
  margin: 0;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease;
}

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

.button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid #f0b99f;
  outline-offset: 3px;
}

.offer-actions .button {
  width: 100%;
}

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover {
  background: #d98b69;
}

.button-secondary {
  border-color: #afc1bd;
  background: transparent;
  color: var(--forest);
}

.button-secondary:hover {
  border-color: var(--forest);
  background: #eef5f2;
}

.button-light {
  background: var(--white);
  color: var(--forest);
}

.offer-footnote {
  margin: 18px 0 0;
  color: #778783;
  font-size: 0.77rem;
}

.section {
  padding: clamp(56px, 6.5vw, 80px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 25px;
}

.section h2,
.closing-section h2 {
  color: var(--forest-deep);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 1.01rem;
}

.value-section {
  background: var(--paper);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-height: 250px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.card-number {
  display: block;
  margin-bottom: 36px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.value-card h3,
.steps h3 {
  margin: 0;
  color: var(--forest-deep);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.value-card h3 {
  font-size: 1.2rem;
}

.value-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.intent-section {
  overflow: hidden;
  background: var(--stone);
}

.intent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(38px, 7vw, 88px);
}

.intent-copy p:last-child {
  max-width: 590px;
  margin: 16px 0 0;
  color: #5c6966;
  font-size: 1.01rem;
}

.search-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(44, 55, 50, 0.12);
}

.search-card::before {
  position: absolute;
  z-index: -1;
  top: -55px;
  right: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.search-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.search-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 16px 17px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fcfdfd;
  color: var(--forest-deep);
  font-weight: 800;
}

.search-row span {
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.process-section {
  background: #f7faf8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  min-height: 158px;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.steps li > span {
  display: grid;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
}

.steps h3 {
  font-size: 1.12rem;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
}

.faq-intro {
  margin: 16px 0 0;
  color: var(--muted);
}

.faq-intro a {
  color: var(--green);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 19px 45px 19px 0;
  color: var(--forest-deep);
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 15px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  content: "+";
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -2px 45px 19px 0;
  color: var(--muted);
}

.closing-section {
  padding: clamp(52px, 6vw, 72px) 0;
  background: var(--forest-deep);
  color: var(--white);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.closing-section h2 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.site-footer {
  background: #082622;
  color: rgba(255, 255, 255, 0.64);
}

.footer-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .offer-card {
    max-width: 620px;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 68px;
  }

  .header-link {
    font-size: 0.84rem;
  }

  .brand span:last-child {
    max-width: 235px;
    overflow: hidden;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding: 100px 0 48px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 52, 47, 0.94), rgba(13, 52, 47, 0.9));
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.8vw, 3.85rem);
  }

  .hero-lead {
    font-size: 1.01rem;
  }

  .offer-card {
    padding: 27px 23px;
    border-radius: 19px;
  }

  .offer-card::before {
    top: 17px;
    right: 17px;
  }

  .offer-card h2 {
    max-width: 68%;
    font-size: 1.02rem;
  }

  .section {
    padding: 54px 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .value-grid,
  .intent-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 205px;
  }

  .card-number {
    margin-bottom: 26px;
  }

  .steps li {
    min-height: 0;
  }

  .closing-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-inner {
    gap: 22px;
  }

  .footer-inner {
    justify-content: center;
    gap: 6px;
    padding: 24px 0;
  }
}

@media (max-width: 470px) {
  .header-link {
    display: none;
  }

  .brand span:last-child {
    max-width: 245px;
  }

  .hero-points span {
    font-size: 0.76rem;
  }

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

  .offer-card::before {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .offer-card h2 {
    max-width: none;
  }

  .search-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
