:root {
  --ink: #443b3b;
  --ink-soft: #6f6262;

  --rose: #a96f74;
  --rose-dark: #88575c;
  --rose-light: #ead5d5;

  --sage: #87998a;

  --cream: #fdfaf6;
  --blush: #f8efed;
  --warm-white: #fffdfb;

  --border: #eadfda;

  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--warm-white);
  color: var(--ink);

  font-family: var(--sans);
  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
}


a {
  color: inherit;
}


.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}


/* NAVIGATION */

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;

  height: 86px;

  background: rgba(255, 253, 251, 0.94);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(234, 223, 218, 0.8);
}


.nav-content {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


.brand {
  display: flex;
  align-items: center;
  gap: 13px;

  text-decoration: none;
}


.brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--rose);
  color: white;

  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 1px;
}


.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}


.brand-text strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}


.brand-text small {
  margin-top: 4px;

  color: var(--ink-soft);

  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}


nav {
  display: flex;
  gap: 30px;
}


nav a {
  position: relative;

  color: var(--ink-soft);

  text-decoration: none;
  font-size: 14px;
}


nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: var(--rose);

  transition: width 0.2s ease;
}


nav a:hover {
  color: var(--rose-dark);
}


nav a:hover::after {
  width: 100%;
}


/* HERO */

.hero {
  position: relative;
  overflow: hidden;

  min-height: 700px;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      125deg,
      var(--cream) 0%,
      var(--blush) 100%
    );
}


.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;

  align-items: center;

  padding-top: 80px;
  padding-bottom: 80px;
}


.eyebrow,
.section-label {
  margin: 0 0 20px;

  color: var(--rose-dark);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 2.2px;
}


h1 {
  max-width: 760px;

  margin: 0 0 30px;

  color: #493d3d;

  font-family: var(--serif);
  font-size: clamp(52px, 6.3vw, 78px);
  font-weight: 400;

  line-height: 1.07;
  letter-spacing: -2.5px;
}


h1 em {
  color: var(--rose);

  font-weight: 400;
}


.hero-description {
  max-width: 650px;

  margin: 0;

  color: var(--ink-soft);

  font-size: 19px;
  line-height: 1.8;
}


.hero-actions {
  display: flex;
  gap: 14px;

  margin-top: 34px;
}


.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 24px;

  border-radius: 100px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


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


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


.button.primary:hover {
  background: var(--rose-dark);
}


.button.secondary {
  border: 1px solid #d7c5c2;

  background: rgba(255, 255, 255, 0.6);

  color: var(--ink);
}


.opening {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 35px;

  color: var(--ink-soft);

  font-size: 13px;
  font-weight: 600;
}


.opening-dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--sage);
}


/* PORTRAIT */

.portrait-area {
  display: flex;
  justify-content: center;
}


.portrait-card {
  width: min(100%, 350px);

  padding: 14px 14px 22px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 180px 180px 22px 22px;

  box-shadow:
    0 25px 60px rgba(92, 66, 66, 0.08);
}


.portrait-placeholder {
  aspect-ratio: 0.82;

  display: grid;
  place-items: center;

  border-radius: 170px 170px 15px 15px;

  background:
    linear-gradient(
      145deg,
      #ead9d4,
      #f6eae6
    );
}


.portrait-initials {
  color: rgba(136, 87, 92, 0.35);

  font-family: var(--serif);
  font-size: 80px;
}


.portrait-caption {
  display: flex;
  flex-direction: column;

  padding: 18px 10px 0;

  text-align: center;
}


.portrait-caption strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
}


.portrait-caption span {
  margin-top: 3px;

  color: var(--ink-soft);

  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* DECORATION */

.decor {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


.decor-one {
  width: 430px;
  height: 430px;

  right: -180px;
  top: -150px;

  background: rgba(226, 195, 192, 0.23);
}


.decor-two {
  width: 260px;
  height: 260px;

  left: -130px;
  bottom: -120px;

  background: rgba(169, 183, 170, 0.15);
}


/* GENERAL SECTIONS */

.section {
  padding: 120px 0;
}


h2 {
  margin: 0;

  color: #493d3d;

  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 400;

  line-height: 1.2;
  letter-spacing: -1.2px;
}


.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}


.about-copy {
  color: var(--ink-soft);

  font-size: 17px;
}


.large-text {
  margin-top: 0;

  color: var(--ink);

  font-family: var(--serif);
  font-size: 24px;

  line-height: 1.65;
}


.soft-note {
  margin-top: 30px;
  padding-left: 22px;

  border-left: 2px solid var(--rose-light);

  color: #897979;

  font-size: 14px;
}


/* CARE */

.care-section {
  background: #f8f5f0;
}


.section-heading {
  max-width: 700px;
}


.section-heading > p:last-child {
  max-width: 620px;

  color: var(--ink-soft);

  font-size: 17px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;

  margin-top: 60px;
}


.service-card {
  min-height: 290px;

  padding: 34px;

  background: var(--warm-white);

  border: 1px solid var(--border);
  border-radius: 22px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.service-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 20px 40px rgba(76, 58, 58, 0.06);
}


.service-number {
  color: var(--rose);

  font-family: var(--serif);
  font-size: 14px;
}


.service-card h3 {
  margin: 38px 0 14px;

  color: var(--ink);

  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}


.service-card p {
  margin: 0;

  color: var(--ink-soft);

  font-size: 15px;
}


/* PATIENTS */

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


.patients-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;

  padding: 70px;

  border-radius: 28px;

  background: var(--blush);
}


.patients-copy {
  align-self: center;

  color: var(--ink-soft);

  font-size: 16px;
}


.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-top: 20px;

  color: var(--rose-dark);

  text-decoration: none;
  font-weight: 600;
}


.text-link span {
  transition: transform 0.2s ease;
}


.text-link:hover span {
  transform: translateX(5px);
}


/* CONTACT */

.contact-section {
  padding-top: 100px;
  padding-bottom: 110px;

  text-align: center;

  background: #4d4141;
  color: white;
}


.contact-content {
  max-width: 760px;
}


.contact-section .section-label {
  color: #dcb8b8;
}


.contact-section h2 {
  color: white;
}


.contact-section p {
  color: #d8cece;
}


.email-link {
  display: inline-block;

  margin-top: 22px;

  color: #f0caca;

  font-family: var(--serif);
  font-size: clamp(25px, 4vw, 36px);

  text-decoration: none;

  border-bottom: 1px solid rgba(240, 202, 202, 0.45);
}


.email-link:hover {
  color: white;
}


.privacy-note {
  margin-top: 35px !important;

  font-size: 12px;
  opacity: 0.75;
}


/* FOOTER */

footer {
  padding: 40px 0;

  background: #403636;
  color: #d8cccc;
}


.footer-content {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}


.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}


.footer-mark {
  width: 36px;
  height: 36px;

  background: #75595b;

  font-size: 11px;
}


.footer-brand div,
.footer-right {
  display: flex;
  flex-direction: column;
}


.footer-brand strong {
  color: white;

  font-family: var(--serif);
  font-weight: 500;
}


.footer-brand span,
.footer-right {
  font-size: 12px;
}


.footer-right {
  align-items: flex-end;
}


.footer-right a {
  margin-bottom: 3px;

  color: white;

  text-decoration: none;
}


/* MOBILE */

@media (max-width: 850px) {

  .hero-grid,
  .about-grid,
  .patients-card {
    grid-template-columns: 1fr;
  }


  .hero-grid {
    gap: 55px;
  }


  .portrait-area {
    justify-content: flex-start;
  }


  .portrait-card {
    max-width: 300px;
  }


  .about-grid,
  .patients-card {
    gap: 35px;
  }


  .patients-card {
    padding: 45px;
  }


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

}


@media (max-width: 700px) {

  .container {
    width: min(100% - 32px, 1120px);
  }


  .navbar {
    height: 76px;
  }


  nav {
    display: none;
  }


  .hero {
    min-height: auto;
  }


  .hero-grid {
    padding-top: 70px;
    padding-bottom: 70px;
  }


  h1 {
    font-size: 50px;
    letter-spacing: -1.5px;
  }


  .hero-description {
    font-size: 17px;
  }


  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }


  .section {
    padding: 80px 0;
  }


  .patients-card {
    width: calc(100% - 32px);
    padding: 38px 26px;
  }


  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }


  .footer-right {
    align-items: flex-start;
  }

}
