:root {
  --ink: #283f4b;
  --muted: #65777d;
  --paper: #fbfaf6;
  --white: #fff;
  --sage: #dfe9df;
  --sage-dark: #728a75;
  --blue: #5d8fa9;
  --blue2: #456f86;
  --peach: #dda994;
  --line: #d8e1da;
  --shadow: 0 16px 40px rgba(52, 76, 74, .09);
}

/* =========================
   Base
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.mobileOnly {
  display: none;
}

/* =========================
   Header
========================= */

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 0 clamp(22px, 4.2vw, 70px);
  border-bottom: 1px solid #263e4b18;
  background: #fbfaf6ef;
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
  font-size: clamp(19px, 1.6vw, 27px);
  font-weight: 700;
  letter-spacing: .08em;
}

.petals {
  position: relative;
  width: 38px;
  height: 40px;
}

.petals i {
  position: absolute;
  width: 14px;
  height: 25px;
  border-radius: 100% 10% 100% 10%;
  transform-origin: bottom;
}

.petals i:nth-child(1) {
  left: 2px;
  top: 5px;
  background: #a9bea9;
  transform: rotate(-35deg);
}

.petals i:nth-child(2) {
  left: 17px;
  background: var(--peach);
  transform: rotate(35deg);
}

.petals i:nth-child(3) {
  left: 21px;
  top: 21px;
  height: 16px;
  background: var(--blue);
  transform: rotate(65deg);
}

.nav {
  display: flex;
  gap: clamp(18px, 2.5vw, 42px);
  margin-left: auto;
  padding: 0 34px;
  font-size: 13px;
  font-weight: 600;
}

.nav a {
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--blue);
}

.headerCta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  transition: .2s;
}

.headerCta {
  min-height: 54px;
  padding: 0 24px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
}

.headerCta:hover,
.primary:hover {
  background: var(--blue2);
  box-shadow: 0 10px 24px #456f8628;
  transform: translateY(-2px);
}

.menu {
  display: none;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 88px);
  grid-template-columns: 51% 49%;
  align-items: center;
  overflow: hidden;
  padding: 70px clamp(24px, 4.2vw, 70px) 150px;
}

.heroCopy {
  position: relative;
  z-index: 3;
  max-width: 720px;
  animation: up .6s ease both;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 27px;
  padding: 9px 17px;
  border: 1px solid #bfcfbe;
  border-radius: 99px;
  color: #637f69;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 69px);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.48;
}

.lead {
  margin: 24px 0 0;
  color: #45565d;
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: .08em;
  line-height: 1.9;
}

.actions {
  display: flex;
  gap: 17px;
  margin-top: 35px;
}

.button {
  min-height: 64px;
  padding: 0 36px;
  font-size: 16px;
}

.primary {
  background: var(--blue);
  color: #fff;
}

.secondary {
  border: 1.5px solid var(--blue);
  background: #ffffff80;
  color: var(--blue2);
}

.secondary:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.heroCopy > small {
  display: block;
  margin-top: 15px;
  color: #7c8a8e;
}

/* Main photo */

.visual {
  position: absolute;
  inset: 0 0 84px 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #f4f0e7, #e5eee4);
  border-radius: 48% 0 0 48%;
  animation: fade .8s .15s both;
}

.photoVisual {
  background: #e8eff2;
}

.photoVisual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.photoShade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 250, 246, .72) 0,
    rgba(251, 250, 246, .12) 30%,
    transparent 55%
  );
}

/* Legacy illustration elements kept for compatibility */

.sun {
  position: absolute;
  top: 8%;
  left: 14%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff8df70;
}

.plant {
  position: absolute;
  color: #789278;
  font-size: 160px;
  line-height: 1;
  transform: rotate(-24deg);
}

.p1 {
  right: 4%;
  top: 2%;
}

.p2 {
  left: 3%;
  bottom: 5%;
  font-size: 120px;
  transform: rotate(25deg);
}

.sofa {
  position: absolute;
  right: -2%;
  bottom: 4%;
  width: 74%;
  height: 45%;
  border-radius: 46% 15% 0 0;
  background: #b8c8bb;
}

.cushion {
  position: absolute;
  right: 10%;
  top: 10%;
  width: 32%;
  height: 42%;
  border-radius: 45%;
  background: #dba78f;
}

.person .head {
  position: absolute;
  left: 47%;
  top: 24%;
  width: 106px;
  height: 120px;
  border-radius: 48%;
  background: #e7b58f;
}

.person .head::after {
  position: absolute;
  inset: -18px -13px 38% -17px;
  border-radius: 55% 48% 40% 30%;
  background: #53443e;
  content: "";
}

.person .body {
  position: absolute;
  left: 38%;
  top: 40%;
  width: 270px;
  height: 360px;
  border-radius: 48% 48% 12% 12%;
  background: #edf0ea;
  transform: rotate(5deg);
}

.person .arm {
  position: absolute;
  left: 31%;
  top: 49%;
  width: 180px;
  height: 42px;
  border-radius: 30px;
  background: #e7b58f;
  transform: rotate(-48deg);
}

.phone {
  position: absolute;
  left: 33%;
  top: 35%;
  display: grid;
  width: 70px;
  height: 125px;
  place-items: center;
  border: 7px solid #344c58;
  border-radius: 14px;
  background: #dbe9e8;
  transform: rotate(-9deg);
}

.doctor {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue2);
  font-size: 10px;
  font-weight: 700;
}

.table {
  position: absolute;
  left: 13%;
  bottom: 12%;
  display: grid;
  width: 190px;
  height: 65px;
  place-items: center;
  border-radius: 50%;
  background: #caa47e;
  font-size: 30px;
}

.table::after {
  position: absolute;
  top: 45px;
  width: 18px;
  height: 130px;
  background: #9c7d62;
  content: "";
}

/* Trust cards */

.trust {
  position: absolute;
  right: clamp(24px, 4.2vw, 70px);
  bottom: 28px;
  left: clamp(24px, 4.2vw, 70px);
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trustCard {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #263e4b0d;
  border-radius: 16px;
  background: #fffffff2;
  box-shadow: var(--shadow);
}

.trustCard > b {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border-radius: 50%;
  background: #eef3ea;
  font-size: 27px;
}

.trustCard strong,
.trustCard small {
  display: block;
}

.trustCard strong {
  font-size: 14px;
}

.trustCard small {
  margin-top: 7px;
  color: var(--muted);
}

/* =========================
   Common Sections
========================= */

.section {
  padding: 110px clamp(24px, 7vw, 120px);
  text-align: center;
}

.tint {
  background: #f0f4ed;
}

.kicker {
  margin: 0 0 15px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
}

.section h2,
.reservation h2 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.sectionLead {
  max-width: 730px;
  margin: 20px auto 55px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.left {
  margin-left: 0;
  text-align: left;
}

/* =========================
   Features
========================= */

.featureGrid {
  display: grid;
  max-width: 1180px;
  margin: auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.featureGrid article {
  padding: 36px 30px;
  border: 1px solid #dfe6df;
  border-radius: 22px;
  background: #fff;
  text-align: left;
  box-shadow: 0 9px 28px #415d520b;
}

.featureGrid article > span {
  color: var(--peach);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}

.featureGrid h3 {
  margin: 17px 0 12px;
  font-size: 20px;
}

.featureGrid p,
.symptomGrid p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.notice {
  display: flex;
  max-width: 1180px;
  margin: 42px auto 0;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 15px;
  background: #fff8f2;
  text-align: left;
}

.notice b {
  white-space: nowrap;
  color: #a46e59;
}

.notice p {
  margin: 0;
  color: #765f56;
  font-size: 13px;
  line-height: 1.8;
}

/* =========================
   Symptoms
========================= */

.symptomGrid {
  display: grid;
  max-width: 1100px;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.symptomGrid article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 17px;
  background: #fff;
  text-align: left;
}

.symptomGrid article > span {
  color: var(--peach);
  font-size: 13px;
  font-weight: 800;
}

.symptomGrid h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

/* =========================
   Steps
========================= */

.steps {
  display: grid;
  max-width: 1180px;
  margin: 55px auto 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 32px 22px;
}

.steps article > b {
  position: absolute;
  top: 0;
  left: 0;
  color: #d3dfd3;
  font-size: 36px;
  font-weight: 400;
}

.steps article > span {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 24px auto;
  place-items: center;
  border-radius: 50%;
  background: #e9f0e8;
  font-size: 30px;
}

.steps h3 {
  font-size: 17px;
}

/* =========================
   Price
========================= */

.priceSection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  text-align: left;
}

.priceCard {
  padding: 38px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.priceCard > p {
  margin: 0;
  color: var(--blue2);
  font-weight: 700;
}

.priceCard strong {
  display: block;
  margin: 14px 0 24px;
  font-size: 27px;
}

.priceCard ul {
  display: grid;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: "✓  ";
}

.priceCard small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================
   FAQ
========================= */

.faq {
  max-width: 920px;
  margin: 50px auto 0;
  text-align: left;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px 4px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary span {
  color: var(--blue);
  font-size: 22px;
}

.faq summary b {
  margin-left: auto;
  font-size: 22px;
}

.faq details[open] summary b {
  transform: rotate(45deg);
}

.faq details p {
  margin: 0;
  padding: 0 48px 25px;
  color: var(--muted);
  line-height: 1.9;
}

/* =========================
   Reservation
========================= */

.reservation {
  display: grid;
  place-items: center;
  padding: 100px 24px;
  background: linear-gradient(130deg, #e3ede2, #f5ede7);
  text-align: center;
}

.reservation > p {
  color: var(--muted);
}

.large {
  margin-top: 30px;
  min-width: 310px;
}

.reservation > small {
  margin-top: 16px;
  color: #76847e;
}

/* =========================
   Doctors
   PC: 3 cards / Mobile: 1 card
========================= */

.doctor-section {
  padding: 105px clamp(24px, 6vw, 72px);
  background: #fbfaf6;
}

.doctor-section__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.doctor-section__heading {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.doctor-section__kicker {
  margin: 0 0 18px;
  color: #708c78;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
}

.doctor-section__heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.5;
}

.doctor-section__lead {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.doctor-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.doctor-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #dfe6df;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(52, 76, 74, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(52, 76, 74, .10);
}

.doctor-card__image {
  display: flex;
  height: 205px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 18px 24px 0;
  background: linear-gradient(145deg, #edf3ed, #f4f1eb);
}

.doctor-card__image img {
  display: block;
  width: auto;
  max-width: 88%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.doctor-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 30px;
  text-align: left;
}

.doctor-card__department {
  margin: 0 0 9px;
  color: #b7765e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.doctor-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
}

.doctor-card h3 span {
  margin-left: 4px;
  color: #7c8a8e;
  font-size: 12px;
  font-weight: 500;
}

.doctor-card__message {
  min-height: 108px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.doctor-card__info {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.doctor-card__info > div {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.doctor-card__info dt {
  color: #708c78;
  font-size: 12px;
  font-weight: 800;
}

.doctor-card__info dd {
  margin: 0;
  color: #52646b;
  font-size: 12px;
  line-height: 1.7;
}

.doctor-section__note {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
  padding: 22px 26px;
  border-radius: 4px;
  background: #fff6ef;
  text-align: left;
}

.doctor-section__note strong {
  flex: 0 0 auto;
  color: #b06e54;
  font-size: 14px;
}

.doctor-section__note p {
  margin: 0;
  color: #765f56;
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .doctor-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-section__note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  .doctor-section {
    padding: 76px 20px;
  }

  .doctor-section__heading {
    margin-bottom: 36px;
  }

  .doctor-section__heading h2 {
    font-size: 28px;
  }

  .doctor-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doctor-card__image {
    height: 240px;
  }

  .doctor-card__body {
    padding: 24px 22px 26px;
  }

  .doctor-card__message {
    min-height: 0;
  }

  .doctor-section__note {
    margin-top: 24px;
    padding: 20px;
  }
}

/* =========================
   Footer
========================= */

.footer {
  padding: 70px 36px 24px;
  background: #183f3a;
  color: #fff;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-main {
  display: grid;
  max-width: 1240px;
  min-height: 380px;
  margin: 0 auto;
  grid-template-columns: 1.05fr .7fr 1.7fr;
  gap: 70px;
}

.footer-brand {
  align-self: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
}

.footer-description {
  margin: 28px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.footer-support {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.9;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  align-self: start;
}

.footer-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 170px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 15px;
}

.footer-menu a:first-child {
  padding-top: 0;
}

.footer-arrow {
  color: #84b9ad;
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  transition: transform .25s ease;
}

.footer-menu a:hover .footer-arrow {
  transform: translateX(4px);
}

.footer-services h3 {
  margin: 0 0 22px;
  font-size: 17px;
  font-weight: 600;
}

.footer-service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0 40px;
}

.footer-service-columns nav {
  display: flex;
  flex-direction: column;
}

.footer-service-columns a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
}

.footer-service-columns a span:last-child {
  color: rgba(255, 255, 255, .55);
  font-size: 24px;
  transition: transform .25s ease;
}

.footer-service-columns a:hover span:last-child {
  transform: translateX(4px);
}

.footer-menu a,
.footer-service-columns a,
.legal-links a {
  transition: opacity .2s ease;
}

.footer-menu a:hover,
.footer-service-columns a:hover,
.legal-links a:hover {
  opacity: .7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 45px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.legal-links a {
  font-size: 12px;
}

.footer-bottom small {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

/* =========================
   Animations
========================= */

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

/* =========================
   Responsive - 1120px
========================= */

@media (max-width: 1120px) {
  .nav {
    gap: 15px;
    padding: 0 18px;
    font-size: 11px;
  }

  .headerCta {
    padding: 0 16px;
  }

  .trust {
    gap: 9px;
  }

  .trustCard {
    padding: 13px;
  }
}

/* =========================
   Responsive - 1000px
========================= */

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-services {
    grid-column: 1 / -1;
  }
}

/* =========================
   Responsive - 900px
========================= */

@media (max-width: 900px) {
  .nav,
  .headerCta {
    display: none;
  }

  .menu {
    position: relative;
    display: block;
    margin-left: auto;
  }

  .menu summary {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background-color: #fff;
    background-image:
      linear-gradient(var(--ink), var(--ink)),
      linear-gradient(var(--ink), var(--ink)),
      linear-gradient(var(--ink), var(--ink));
    background-position:
      center calc(50% - 7px),
      center,
      center calc(50% + 7px);
    background-repeat: no-repeat;
    background-size: 22px 2px, 22px 2px, 22px 2px;
    cursor: pointer;
    font-size: 0;
    list-style: none;
  }

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

  .menu summary span {
    display: none !important;
  }

  .menu[open] summary {
    background-image:
      linear-gradient(
        45deg,
        transparent 46%,
        var(--ink) 47%,
        var(--ink) 53%,
        transparent 54%
      ),
      linear-gradient(
        -45deg,
        transparent 46%,
        var(--ink) 47%,
        var(--ink) 53%,
        transparent 54%
      );
    background-position: center, center;
    background-size: 24px 24px, 24px 24px;
  }

  .menu nav {
    position: absolute;
    top: 58px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .menu nav a {
    padding: 11px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 36px;
  }

  .visual {
    position: relative;
    inset: auto;
    height: 480px;
    margin: 42px -24px 0;
    border-radius: 34% 34% 0 0;
  }

  .photoVisual img {
    object-position: 72% center;
  }

  .photoShade {
    background: linear-gradient(
      180deg,
      rgba(251, 250, 246, .18),
      transparent 40%
    );
  }

  .trust {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, 1fr);
    margin-top: -44px;
  }

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

  .priceSection {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .left {
    text-align: center;
  }

  .sectionLead.left {
    margin-left: auto;
  }

  .notice {
    display: block;
  }

  .notice p {
    margin-top: 10px;
  }
}

/* =========================
   Responsive - 850px
========================= */

@media (max-width: 850px) {
  .doctor-card {
    grid-template-columns: 220px 1fr;
  }

  .doctor-card__body {
    padding: 32px;
  }
}

/* =========================
   Responsive - 700px
========================= */

@media (max-width: 700px) {
  .footer {
    padding: 50px 22px 24px;
  }

  .footer-main {
    display: block;
    min-height: auto;
  }

  .footer-brand {
    margin-bottom: 42px;
  }

  .footer-logo {
    font-size: 22px;
  }

  .footer-menu {
    margin-bottom: 42px;
  }

  .footer-menu a {
    min-width: 100%;
  }

  .footer-service-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    display: block;
    margin-top: 42px;
  }

  .legal-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 18px;
  }

  .footer-bottom small {
    display: block;
    margin-top: 28px;
  }
}

/* =========================
   Responsive - 650px
========================= */

@media (max-width: 650px) {
  .doctor-section {
    padding: 70px 20px;
  }

  .doctor-section__heading {
    margin-bottom: 36px;
  }

  .doctor-card {
    display: block;
    min-height: 0;
  }

  .doctor-card__image {
    height: 250px;
    padding-top: 20px;
  }

  .doctor-card__image img {
    max-width: 230px;
  }

  .doctor-card__body {
    padding: 26px 24px 28px;
  }

  .doctor-card h3 {
    font-size: 23px;
  }

  .doctor-card__message {
    margin-top: 15px;
  }

  .doctor-card__info > div {
    grid-template-columns: 75px 1fr;
    gap: 10px;
  }
}

/* =========================
   Responsive - 560px
========================= */

@media (max-width: 560px) {
  .header {
    min-height: 72px;
    padding: 0 16px;
  }

  .brand {
    gap: 8px;
    font-size: 17px;
    letter-spacing: .03em;
  }

  .petals {
    width: 32px;
    flex: 0 0 32px;
    transform: scale(.8);
    transform-origin: left;
  }

  .menu summary {
    width: 44px;
    height: 44px;
  }

  .hero h1 {
    font-size: 35px;
    line-height: 1.55;
  }

  .lead br {
    display: none;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 59px;
  }

  .visual {
    height: 360px;
  }

  .photoVisual {
    height: 310px;
    margin-top: 32px;
    border-radius: 28px 28px 8px 8px;
  }

  .photoVisual img {
    object-position: 70% center;
  }

  .person .head {
    left: 49%;
    width: 78px;
    height: 90px;
  }

  .person .body {
    left: 39%;
    width: 190px;
    height: 270px;
  }

  .person .arm {
    left: 31%;
    width: 140px;
  }

  .phone {
    left: 31%;
    top: 36%;
    width: 57px;
    height: 100px;
  }

  .table {
    left: 4%;
    width: 130px;
  }

  .plant {
    font-size: 105px;
  }

  .trust,
  .featureGrid,
  .symptomGrid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 22px;
  }

  .notice {
    padding: 21px;
  }

  .mobileOnly {
    display: block;
  }

  .large {
    min-width: 0;
  }

  .heroCopy > small {
    line-height: 1.7;
  }

  .trustCard {
    min-height: 96px;
  }

  .reservation {
    padding: 78px 22px;
  }
}

/* =========================
   Responsive - 420px
========================= */

@media (max-width: 420px) {
  .legal-links {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Reduced Motion
========================= */

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* =========================================================
   Blog / Column
========================================================= */

.blog-page {
  background: #fbfaf6;
}

.blog-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(22px, 4.2vw, 70px);
  border-bottom: 1px solid rgba(38, 62, 75, .08);
  background: rgba(251, 250, 246, .95);
  backdrop-filter: blur(14px);
}

.blog-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

.blog-header__nav a:hover {
  color: var(--blue2);
}

.blog-hero {
  padding: 92px 24px 68px;
  text-align: center;
}

.blog-hero__kicker,
.article-kicker {
  margin: 0 0 14px;
  color: #718e79;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.blog-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.45;
}

.blog-hero p:last-child {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.blog-list-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 110px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #dfe6df;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(52, 76, 74, .055);
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(52, 76, 74, .10);
}

.blog-card__image {
  display: block;
  height: 265px;
  overflow: hidden;
  background: #e8eee9;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card__body {
  padding: 28px 30px 31px;
}

.blog-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: #7b898d;
  font-size: 12px;
}

.blog-card__category {
  color: #ad6e58;
  font-weight: 700;
}

.blog-card h2 {
  margin: 14px 0 12px;
  font-size: 21px;
  line-height: 1.65;
}

.blog-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.blog-card__more {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue2);
  font-size: 13px;
  font-weight: 700;
}

/* Article */

.article-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 78px 24px 110px;
}

.article-head {
  max-width: 820px;
  margin: 0 auto 38px;
}

.article-head h1 {
  margin: 12px 0 22px;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1.55;
}

.article-hero {
  overflow: hidden;
  margin: 36px 0 44px;
  border-radius: 26px;
  background: #e9efeb;
}

.article-hero img {
  width: 100%;
  height: clamp(300px, 44vw, 500px);
  display: block;
  object-fit: cover;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  color: #3d5058;
  font-size: 16px;
  line-height: 2;
}

.article-body > p {
  margin: 0 0 24px;
}

.article-body h2 {
  margin: 55px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.55;
}

.article-body h3 {
  margin: 34px 0 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.6;
}

.article-body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 28px;
  padding-left: 1.4em;
}

.article-note,
.article-alert {
  margin: 34px 0;
  padding: 24px 26px;
  border-radius: 14px;
}

.article-note {
  background: #eff5f0;
}

.article-alert {
  background: #fff4ec;
  color: #704f43;
}

.article-note p,
.article-alert p {
  margin: 0;
}

.article-cta {
  margin: 56px 0 0;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(130deg, #e5eee4, #f6eee8);
  text-align: center;
}

.article-cta h2 {
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  font-size: 25px;
}

.article-cta p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.article-sources {
  margin-top: 55px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #78868a;
  font-size: 12px;
  line-height: 1.8;
}

.article-sources h2 {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  font-size: 15px;
}

.article-sources ul {
  gap: 5px;
  margin: 0;
}

.article-sources a {
  text-decoration: underline;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue2);
  font-size: 13px;
  font-weight: 700;
}

.blog-author {
  max-width: 760px;
  margin: 48px auto 0;
  padding: 22px 24px;
  border: 1px solid #e0e7e2;
  border-radius: 16px;
  background: #fff;
}

.blog-author strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.blog-author p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.blog-footer {
  padding: 34px 24px;
  background: #2e4651;
  color: #fff;
  text-align: center;
}

.blog-footer a {
  margin: 0 10px;
  font-size: 12px;
}

.blog-footer small {
  display: block;
  margin-top: 16px;
  color: #c6d1d5;
}

@media (max-width: 760px) {
  .blog-header__nav {
    display: none;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-card__image {
    height: 230px;
  }

  .article-shell {
    padding-top: 52px;
  }

  .article-body {
    font-size: 15px;
  }

  .article-cta {
    padding: 30px 22px;
  }
}


/* =========================================================
   Author profile
========================================================= */

.author-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 90px 24px 110px;
}

.author-hero {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.author-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  line-height: 1.45;
}

.author-hero h1 span {
  display: block;
  margin-top: 8px;
  color: #708c78;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.author-hero > p:last-child {
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.9;
}

.author-profile-card {
  max-width: 800px;
  margin: 0 auto 70px;
  padding: 34px;
  border: 1px solid #dfe6df;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(52, 76, 74, .055);
}

.author-profile-card h2 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: 24px;
}

.author-profile-card dl {
  margin: 0;
}

.author-profile-card dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.author-profile-card dt {
  color: #708c78;
  font-weight: 700;
}

.author-profile-card dd {
  margin: 0;
  color: #52646b;
  line-height: 1.8;
}

.author-profile-card__note {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff6ef;
  color: #765f56;
  font-size: 12px;
  line-height: 1.8;
}

.author-articles > h2 {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 30px;
}

.author-articles .blog-card h3 {
  margin: 14px 0 12px;
  font-size: 19px;
  line-height: 1.65;
}

.article-meta a,
.blog-card__meta a,
.blog-author a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .author-page {
    padding: 66px 20px 80px;
  }

  .author-profile-card {
    padding: 24px 22px;
  }

  .author-profile-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}


/* Subtle author display */
.article-meta a,
.blog-card__meta a,
.blog-author a {
  color: inherit;
  font-weight: 400;
  text-decoration: none;
}

.blog-author {
  opacity: .78;
}

.author-hero .author-role {
  margin-top: 6px;
  color: #8b9893;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}
