:root {
  --ink: #202a2c;
  --gray: #828c8d;
  --aqua: #afc8cb;
  --white: #fff;
  --cream: #f4f5f3;
  --line: rgba(32, 42, 44, 0.14);
  --max: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 56px), var(--max));
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.28em;
  font-weight: 500;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Playfair Display, serif;
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links a {
  opacity: 0.86;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 13px 19px;
  border-radius: 99px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  margin: 6px;
}
.hero {
  min-height: 1000px;
  height: 100vh;
  position: relative;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg,
.statement-bg {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-bg {
  background-image: linear-gradient(
      90deg,
      rgba(32, 42, 44, 0.35),
      rgba(32, 42, 44, 0.1)
    ),
    url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=2200&q=88");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(25, 36, 38, 0.92) 0%,
      rgba(25, 36, 38, 0.63) 47%,
      rgba(25, 36, 38, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(25, 36, 38, 0.7), transparent 50%);
}
.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(28px, calc((100% - var(--max)) / 2));
  top: 23%;
  width: min(610px, 44vw);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--aqua);
}
.eyebrow.dark {
  color: var(--gray);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 28px;
  font-weight: 600;
}
.hero h1 em,
.contact h2 em,
.statement-content h2 em {
  font-family: Playfair Display, serif;
  font-weight: 600;
}
.hero-text {
  font-size: 17px;
  line-height: 1.75;
  max-width: 570px;
  color: rgba(255, 255, 255, 0.78);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 99px;
  border: 0;
  padding: 17px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary {
  background: var(--aqua);
  color: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #c4dcde;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 7px;
}
.hero-card {
  position: absolute;
  right: max(28px, calc((100% - var(--max)) / 2));
  top: 23%;
  width: min(490px, 39vw);
  z-index: 2;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}
.browser-bar {
  height: 42px;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.browser-bar span {
  margin-left: 10px;
  font-size: 9px;
  opacity: 0.7;
}
.clinic-preview {
  height: 440px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #e6efee 0%, #aec9cc 100%);
  color: var(--ink);
  padding: 24px;
}
.preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  position: relative;
  z-index: 2;
}
.preview-nav strong {
  letter-spacing: 0.12em;
}
.preview-copy {
  position: relative;
  z-index: 2;
  margin-top: 85px;
  width: 60%;
}
.mini-tag {
  text-transform: uppercase;
  font-size: 7px;
  letter-spacing: 0.16em;
}
.preview-copy h3 {
  font-family: Playfair Display, serif;
  font-size: 37px;
  line-height: 1.05;
  margin: 14px 0;
}
.preview-copy p {
  font-size: 9px;
  line-height: 1.6;
}
.preview-copy button {
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 99px;
  padding: 11px 16px;
  font-size: 8px;
}
.preview-person {
  position: absolute;
  right: -18px;
  bottom: 0;
  width: 53%;
  height: 90%;
  background: url("https://images.unsplash.com/photo-1594824476967-48c8b964273f?auto=format&fit=crop&w=900&q=85")
    center/cover;
  border-radius: 180px 180px 0 0;
  filter: saturate(0.75);
}
.floating-stat {
  position: absolute;
  right: 17px;
  top: 76px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.floating-stat b {
  font-size: 20px;
}
.floating-stat span {
  font-size: 7px;
  text-transform: uppercase;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: max(28px, calc((100% - var(--max)) / 2));
  right: max(28px, calc((100% - var(--max)) / 2));
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.trust-strip {
  background: var(--aqua);
  padding: 24px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.trust-strip > p {
  padding-left: max(28px, calc((100% - var(--max)) / 2));
  padding-right: 35px;
  white-space: nowrap;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.marquee {
  overflow: hidden;
  flex: 1;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 24s linear infinite;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.marquee-track i {
  font-size: 8px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section-pad {
  padding: 120px max(28px, calc((100% - var(--max)) / 2));
}
.intro {
  display: grid;
  grid-template-columns: 80px 1.5fr 0.7fr;
  gap: 70px;
  align-items: end;
}
.section-number {
  font-size: 11px;
  font-weight: 800;
  color: var(--gray);
  align-self: start;
}
.section-number.inline {
  display: inline-block;
  margin-right: 18px;
}
.intro h2,
.showcase-heading h2,
.process-head h2,
.contact h2 {
  font-size: clamp(40px, 5.1vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 600;
  margin: 0;
}
.intro-side p {
  line-height: 1.8;
  color: #566164;
  font-size: 15px;
}
.dark-link {
  color: var(--ink);
  border-color: var(--line);
  margin-top: 18px;
}
.services-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.service-card {
  background: #fff;
  padding: 45px;
  min-height: 360px;
  position: relative;
  border: 1px solid rgba(32, 42, 44, 0.06);
}
.service-card > span {
  font-size: 10px;
  color: var(--gray);
}
.service-icon {
  position: absolute;
  right: 38px;
  top: 32px;
  font-size: 30px;
  color: var(--aqua);
}
.service-card h3 {
  margin-top: 120px;
  font-size: 23px;
}
.service-card p {
  line-height: 1.8;
  color: #667174;
  font-size: 14px;
}
.service-card:hover {
  background: var(--ink);
  color: #fff;
  transition: 0.4s;
}
.service-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}
.parallax-statement {
  height: 980px;
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--ink);

}
.statement-bg {
background-position: top !important;
  background-image: url("/images/doctorparall.webp");

}
.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 37, 39, 0.9),
    rgba(26, 37, 39, 0.45)
  );
}
.statement-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  height: 100%;
  margin: auto;
  padding: 140px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statement-content > p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--aqua);
  font-size: 11px;
}
.statement-content h2 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  max-width: 900px;
}
.statement-stats {
  display: flex;
  gap: 90px;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 30px;
}
.statement-stats div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.statement-stats b {
  font-size: 27px;
}
.statement-stats span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}
.showcase {
  background: #f8f8f6;
}
.showcase-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.4fr;
  align-items: start;
  margin-bottom: 70px;
}
.showcase-heading > div {
  display: flex;
  align-items: center;
}
.showcase-browser {
  box-shadow: 0 35px 100px rgba(32, 42, 44, 0.16);
}
.browser-bar.light {
  background: #e7e9e7;
}
.browser-bar.light i {
  background: #aeb5b5;
}
.showcase-screen {
  background: #dde8e7;
  padding: 30px;
}
.showcase-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}
.showcase-nav strong {
  letter-spacing: 0.14em;
}
.showcase-nav button {
  background: var(--ink);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 99px;
  font-size: 9px;
}
.showcase-main {
  height: 620px;
  display: grid;
  grid-template-columns: 43% 57%;
  position: relative;
  padding-top: 30px;
}
.showcase-copy {
  align-self: center;
  padding: 0 45px;
}
.showcase-copy p {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 8px;
}
.showcase-copy h3 {
  font-family: Playfair Display, serif;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 600;
}
.showcase-copy span {
  font-size: 11px;
  font-weight: 700;
}
.showcase-image {
  background: url("/images/doctorr.webp")
    center/cover;
  border-radius: 240px 0 0 0;
  filter: saturate(0.75);
}
.showcase-note {
  position: absolute;
  bottom: 40px;
  left: 37%;
  width: 220px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 15px 40px rgba(32, 42, 44, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.showcase-note b {
  font-size: 12px;
}
.showcase-note span {
  font-size: 9px;
  line-height: 1.6;
  color: var(--gray);
}
.palette {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 18px;
  margin-top: 55px;
}
.palette > div:first-child {
  padding-right: 40px;
}
.palette > div:first-child span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.palette > div:first-child p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray);
  margin-top: 16px;
}
.swatch {
  height: 165px;
  background: var(--swatch);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
  font-size: 10px;
}
.light-swatch {
  color: var(--ink);
  border: 1px solid var(--line);
}
.process {
  background: var(--ink);
  color: #fff;
}
.process-head {
  margin-bottom: 70px;
}
.process-head .eyebrow {
  display: inline-block;
}
.process-head h2 {
  max-width: 900px;
}
.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.process-item {
  display: grid;
  grid-template-columns: 70px 1fr 1.7fr 100px;
  gap: 35px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.process-item > span,
.process-item > b {
  font-size: 11px;
  color: var(--aqua);
}
.process-item h3 {
  margin: 0;
  font-size: 21px;
}
.process-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  background: var(--aqua);
}
.contact h2 {
  margin-bottom: 25px;
}
.contact-copy > p:not(.eyebrow) {
  line-height: 1.8;
  max-width: 600px;
  color: #4d5d60;
}
.contact-note {
  margin-top: 50px;
  border-top: 1px solid rgba(32, 42, 44, 0.25);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  max-width: 360px;
  font-size: 12px;
}
.contact-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 30px 70px rgba(32, 42, 44, 0.12);
}
.contact-form label {
  display: block;
  margin-bottom: 22px;
}
.contact-form label span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 9px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfd5d4;
  padding: 12px 0;
  background: transparent;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
}
.form-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--ink);
  color: #fff;
}
.privacy {
  text-align: center;
  font-size: 9px;
  color: var(--gray);
  margin: 13px 0 0;
}
footer {
  padding: 45px max(28px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  background: #fff;
  font-size: 11px;
  color: var(--gray);
}
footer > p {
  text-align: center;
  margin: 0;
}
footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
}
.footer-brand {
  color: var(--ink);
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.14s;
}
.delay-2 {
  transition-delay: 0.28s;
}
@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 36px);
  }
  .menu-toggle {
    display: block;
    z-index: 20;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    right: 0;
    background: var(--ink);
    padding: 26px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 210px;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 1050px;
  }
  .hero-copy {
    top: 150px;
    left: 28px;
    width: calc(100% - 56px);
  }
  .hero-card {
    top: 610px;
    left: 28px;
    right: auto;
    width: calc(100% - 56px);
  }
  .hero h1 {
    font-size: 56px;
  }
  .intro {
    grid-template-columns: 50px 1fr;
    gap: 35px;
  }
  .intro-side {
    grid-column: 2;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .palette {
    grid-template-columns: repeat(4, 1fr);
  }
  .palette > div:first-child {
    grid-column: 1/-1;
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process-item {
    grid-template-columns: 50px 1fr;
  }
  .process-item p,
  .process-item b {
    grid-column: 2;
  }
  .showcase-main {
    height: 520px;
  }
  .showcase-copy h3 {
    font-size: 43px;
  }
  footer {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  footer > div {
    justify-content: center;
  }
  footer .brand {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .section-pad {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .hero {
    min-height: 800px;
  }
  .hero-copy {
    top: 125px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-text {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-card {
    top: 585px;
  }
  .clinic-preview {
    height: 355px;
  }
  .preview-copy {
    margin-top: 55px;
  }
  .preview-copy h3 {
    font-size: 29px;
  }
  .hero-meta {
    display: none;
  }
  .intro {
    display: block;
  }
  .section-number {
    margin-bottom: 25px;
  }
  .intro-side {
    margin-top: 35px;
  }
  .service-card {
    min-height: 310px;
  }
  .service-card h3 {
    margin-top: 95px;
  }
  .parallax-statement {
    height: 720px;
  }
  .statement-content {
    padding: 90px 28px;
  }
  .statement-stats {
    gap: 25px;
    flex-wrap: wrap;
  }
  .showcase-screen {
    padding: 16px;
  }
  .showcase-nav span {
    display: none;
  }
  .showcase-main {
    grid-template-columns: 1fr;
    height: 620px;
  }
  .showcase-copy {
    padding: 35px 15px;
    z-index: 2;
  }
  .showcase-copy h3 {
    font-size: 42px;
    margin-top: -267px;
  }
  
  .showcase-image {
    position: absolute;
    inset: 250px 0 0 0;
    border-radius: 120px 0 0;
  }
  .showcase-note {
    left: 15px;
    bottom: 18px;
  }
  .palette {
    grid-template-columns: 1fr 1fr;
  }
  .swatch {
    height: 120px;
  }
  .contact-form {
    padding: 27px;
  }
  .contact h2,
  .intro h2,
  .showcase-heading h2,
  .process-head h2 {
    font-size: 39px;
  }
  .process-item {
    gap: 15px;
  }
  .trust-strip > p {
    display: none;
  }
  .showcase-heading > div {
    align-items: flex-start;
  }
}
