/* ---------- Base ---------- */
:root {
  --teal: #0f6b74;
  --teal-deep: #0a4d54;
  --teal-soft: #e7f3f2;
  --sea: #f4faf9;
  --ink: #16333a;
  --ink-soft: #4a626a;
  --coral: #e8795a;
  --coral-deep: #d9603f;
  --line: #d9e8e6;
  --white: #ffffff;
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--sea);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand span, .offer-price, .doctor-mono {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

section { padding: 88px 26px; max-width: 1100px; margin: 0 auto; scroll-margin-top: 70px; }

.kicker {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.sec-head { max-width: 600px; margin-bottom: 46px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.99rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.btn-solid { background: var(--coral); color: #fff; }
.btn-solid:hover { background: var(--coral-deep); }
.btn-solid:active { transform: translateY(1px); }
.btn-soft { background: var(--teal-soft); color: var(--teal); }
.btn-soft:hover { background: #d9ecea; }
.btn-block { width: 100%; }

/* ---------- Announcement ---------- */
.announce {
  background: var(--teal);
  color: #d9efec;
  text-align: center;
  font-size: 0.9rem;
  padding: 9px 18px;
}
.announce strong { color: #fff; }
.announce a { color: #ffd9cc; font-weight: 700; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 250, 249, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 26px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 38px; height: 38px; }
.brand-mark rect { fill: var(--teal); }
.brand-mark .tooth { fill: #fff; }
.brand span { font-size: 1.22rem; color: var(--teal-deep); }
.brand em { font-style: normal; color: var(--coral); }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); }
.nav a:not(.nav-cta):hover { color: var(--teal); }
.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--coral-deep); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 84px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  color: var(--teal-deep);
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.12rem; color: var(--ink-soft); max-width: 500px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.trust-row { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

.hero-media { position: relative; }
.hero-media img {
  border-radius: 30px 30px 30px 110px;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(15, 107, 116, 0.22);
}
.float-card {
  position: absolute;
  right: -14px;
  bottom: 30px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 14px 40px rgba(22, 51, 58, 0.18);
}
.float-card .stars { color: #f2b01e; letter-spacing: 2px; font-size: 1.05rem; }
.float-card p { font-size: 0.88rem; color: var(--ink-soft); }
.float-card strong { color: var(--ink); font-size: 1.05rem; }

/* ---------- Care ---------- */
.care { padding-top: 30px; }
.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.care-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.12s ease, box-shadow 0.15s ease;
}
.care-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(15, 107, 116, 0.1); }
.care-ico {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--teal-soft);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.care-card h3 { font-size: 1.32rem; margin-bottom: 8px; color: var(--teal-deep); }
.care-card p { font-size: 0.96rem; color: var(--ink-soft); }

/* ---------- Comfort ---------- */
.comfort { max-width: none; background: var(--white); }
.comfort-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.comfort-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.comfort-copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 24px; color: var(--teal-deep); }
.comfort-list { list-style: none; display: grid; gap: 18px; }
.comfort-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.comfort-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal-soft);
}
.comfort-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 9px;
  width: 10px; height: 6px;
  border-left: 2.2px solid var(--teal);
  border-bottom: 2.2px solid var(--teal);
  transform: rotate(-45deg);
}
.comfort-list strong { color: var(--ink); }

/* ---------- Modern band ---------- */
.modern { max-width: none; background: var(--teal); color: #dff0ee; }
.modern-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.modern .kicker { color: #ffc9b8; }
.modern h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.modern p { font-size: 1.05rem; max-width: 440px; }
.modern-media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.modern-media img {
  border-radius: var(--radius);
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
}
.modern-media img:last-child { margin-top: 28px; }

/* ---------- Doctor ---------- */
.doctor-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 46px 48px;
}
.doctor-mono {
  width: 150px; height: 150px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 3.2rem;
  color: var(--white);
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-deep) 100%);
}
.doctor-bio h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 12px; color: var(--teal-deep); }
.doctor-bio p { color: var(--ink-soft); max-width: 640px; }
.doctor-quote {
  margin-top: 16px;
  font-style: italic;
  color: var(--teal) !important;
  border-left: 3px solid var(--coral);
  padding-left: 16px;
}

/* ---------- Offer + testimonials ---------- */
.offer { padding-top: 0; }
.offer-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  background: var(--teal-deep);
  color: #d5ebe8;
  border-radius: 24px;
  padding: 48px 46px;
}
.offer-kicker {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffc9b8;
  margin-bottom: 14px;
}
.offer-price { font-size: 4.6rem; color: #fff; line-height: 1; }
.offer-price span { font-size: 2.2rem; vertical-align: top; color: var(--coral); }
.offer-what { font-weight: 700; color: #fff; margin: 8px 0 12px; }
.offer-fine { font-size: 0.92rem; margin-bottom: 24px; }
.offer-quotes { display: grid; gap: 16px; }
.offer-quotes blockquote {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 20px;
}
.offer-quotes p { font-size: 0.97rem; margin-bottom: 8px; color: #eef7f6; }
.offer-quotes cite { font-style: normal; font-size: 0.86rem; font-weight: 600; color: #9ec7c2; }

/* ---------- Visit ---------- */
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.visit-info h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 18px; color: var(--teal-deep); }
.visit-info address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 1.04rem;
  margin-bottom: 24px;
}
.visit-info address a { color: var(--teal); font-weight: 700; }
.hours { border-collapse: collapse; margin-bottom: 22px; }
.hours td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.98rem; color: var(--ink-soft); }
.hours td:first-child { font-weight: 700; color: var(--ink); padding-right: 42px; }
.visit-note {
  font-size: 0.95rem;
  color: var(--coral-deep);
  font-weight: 600;
  border-left: 3px solid var(--coral);
  padding-left: 14px;
}
.visit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 30px 32px;
  box-shadow: 0 18px 44px rgba(15, 107, 116, 0.1);
}
.visit-card h3 { font-size: 1.5rem; color: var(--teal-deep); margin-bottom: 18px; }
.visit-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.visit-card input,
.visit-card select {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: var(--sea);
}
.visit-card input:focus,
.visit-card select:focus { outline: none; border-color: var(--teal); }
.sent-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-radius: 11px;
  font-size: 0.92rem;
}
.sent-msg em { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: #a9cdc9; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 26px;
  display: grid;
  gap: 8px;
}
.footer-brand { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: #fff; }
.footer-brand em { font-style: normal; color: #ffc9b8; }
.footer-inner p { font-size: 0.94rem; }
.footer-demo a { color: #ffc9b8; font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; }
  .hero-media img { aspect-ratio: 4 / 3; border-radius: 24px 24px 24px 80px; }
  .float-card { right: 12px; }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .comfort-inner, .modern-inner, .visit-inner, .offer-card { grid-template-columns: 1fr; gap: 38px; }
  .doctor-card { grid-template-columns: 1fr; text-align: left; padding: 36px 30px; }
}

@media (max-width: 620px) {
  .nav a:not(.nav-cta) { display: none; }
  .care-grid { grid-template-columns: 1fr; }
  section { padding: 60px 20px; }
  .doctor-mono { width: 110px; height: 110px; font-size: 2.4rem; }
}
