@font-face {
  font-family: "Bergen Sans";
  src: url("../fonts/BergenSans-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bergen Sans";
  src: url("../fonts/BergenSans-SemiBold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Bergen Sans";
  src: url("../fonts/BergenSans-Bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #17343d;
  --ink-deep: #0b252d;
  --blue: #3d98b5;
  --blue-dark: #277f9d;
  --mist: #eaf3f4;
  --warm: #f7f5f1;
  --warm-deep: #ece9e3;
  --gray: #aeb1b4;
  --white: #ffffff;
  --line: rgba(23, 52, 61, .14);
  --shadow: 0 24px 70px rgba(18, 49, 59, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm);
  color: var(--ink);
  font-family: "Bergen Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  color: white;
  background: var(--ink-deep);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #66bdd6; outline-offset: 4px; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  width: min(1216px, calc(100% - 48px));
  height: 104px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { width: 196px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.site-header nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 600; }
.site-header nav a { transition: color .2s ease; }
.site-header nav a:hover { color: var(--blue-dark); }
.instagram-link { padding: 12px 15px; border: 1px solid rgba(61, 152, 181, .3); border-radius: 999px; color: var(--blue-dark); }
.nav-cta { padding: 13px 18px; border: 1px solid rgba(23, 52, 61, .2); border-radius: 999px; }
.cta-short { display: none; }

.hero {
  min-height: 820px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 64px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 78%, rgba(61, 152, 181, .13), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #f1f6f5 100%);
}
.hero-copy { max-width: 650px; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.45;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(54px, 5.65vw, 86px);
  line-height: .96;
  letter-spacing: -.055em;
}
h1 span { color: var(--blue); font-weight: 400; }
.hero-lead {
  max-width: 585px;
  margin: 30px 0 0;
  color: #50656c;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); box-shadow: 0 14px 30px rgba(23, 52, 61, .16); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 32px rgba(39, 127, 157, .22); }
.button-ghost { border: 1px solid rgba(23, 52, 61, .18); }
.button-light { color: var(--ink-deep); background: white; box-shadow: 0 16px 36px rgba(0, 0, 0, .12); }
.credentials {
  margin: 40px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  list-style: none;
  color: #5f7177;
  font-size: 12px;
}
.credentials li::before { content: "•"; margin-right: 8px; color: var(--blue); }
.hero-visual { position: relative; min-height: 600px; }
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% -32% -10% 16%;
  border-radius: 52% 0 0 48%;
  background: var(--blue);
  opacity: .12;
}
.hero-frame {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border-radius: 46% 46% 24px 24px;
  box-shadow: 0 34px 80px rgba(18, 49, 59, .18);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.hero-note {
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: 40px;
  width: min(350px, 80%);
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 48px rgba(12, 38, 46, .18);
  backdrop-filter: blur(16px);
}
.hero-note img { width: 54px; height: 38px; object-fit: contain; }
.hero-note p { margin: 0; color: #62747a; font-size: 12px; line-height: 1.5; }
.hero-note strong { color: var(--ink); font-size: 13px; }

.trust-strip {
  padding: 26px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: .75fr 1.15fr 1fr 1.45fr;
  gap: 0;
  color: white;
  background: var(--ink-deep);
}
.trust-strip div { min-height: 60px; padding: 0 26px; border-left: 1px solid rgba(255, 255, 255, .15); display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.trust-strip div:first-child { border-left: 0; padding-left: 0; }
.trust-strip span { color: #8eb8c4; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.trust-strip strong { max-width: 235px; font-size: 13px; line-height: 1.35; }

.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 118px 0; }
.section-heading h2, .faq-heading h2, .locations h2, .procedure-copy h2, .about-copy h2, .video-copy h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(40px, 4.1vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-heading-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-heading-row > p { margin: 0 0 4px; color: #61747b; font-size: 15px; line-height: 1.7; }

.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 12px; }
.intro-copy p { margin: 0 0 22px; color: #526970; font-size: 17px; line-height: 1.75; }
.text-link { margin-top: 12px; display: inline-flex; align-items: center; gap: 14px; color: var(--blue-dark); font-size: 14px; font-weight: 700; }

.treatments { border-top: 1px solid var(--line); }
.treatment-grid { margin-top: 66px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treatment-card { min-height: 290px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; transition: color .25s ease, background .25s ease, transform .25s ease; }
.treatment-card > span { color: var(--blue-dark); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.treatment-card h3 { margin: auto 0 15px; color: var(--ink-deep); font-size: 26px; letter-spacing: -.025em; }
.treatment-card p { margin: 0; color: #61747b; font-size: 14px; line-height: 1.65; }
.treatment-card:hover { position: relative; z-index: 1; color: white; background: var(--blue-dark); transform: translateY(-4px); }
.treatment-card:hover > span, .treatment-card:hover h3, .treatment-card:hover p { color: white; }

.minimally-invasive { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 860px; color: white; background: var(--ink-deep); }
.procedure-image { position: relative; min-height: 760px; overflow: hidden; }
.procedure-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, var(--ink-deep)); }
.procedure-image img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 42%; }
.procedure-copy { padding: 100px max(28px, calc((100vw - 1180px) / 2)) 100px 78px; align-self: center; }
.procedure-copy .eyebrow { color: #78c7de; }
.procedure-copy h2 { color: white; }
.procedure-copy > p:not(.eyebrow):not(.medical-note) { margin: 28px 0 36px; color: #bdd0d5; font-size: 16px; line-height: 1.75; }
.benefit-list { margin: 0; padding: 0; list-style: none; }
.benefit-list li { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .16); display: grid; grid-template-columns: 48px 1fr; gap: 10px; }
.benefit-list li > span { color: #78c7de; font-size: 11px; font-weight: 700; }
.benefit-list strong { display: block; margin-bottom: 5px; font-size: 16px; }
.benefit-list p { margin: 0; color: #9cb7be; font-size: 13px; line-height: 1.55; }
.medical-note { margin: 24px 0 0; padding: 16px 18px; border-left: 2px solid var(--blue); color: #9cb7be; background: rgba(255, 255, 255, .05); font-size: 12px; line-height: 1.55; }

.video-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: center; }
.video-copy p:not(.eyebrow) { margin: 26px 0 0; color: #61747b; font-size: 15px; line-height: 1.75; }
.video-placeholder { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); background: var(--ink); }
.video-placeholder::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(5, 30, 38, .04), rgba(5, 30, 38, .72)); }
.video-placeholder.has-video::after { display: none; }
.video-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.video-placeholder iframe { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; border: 0; }
.video-file-link { position: absolute; z-index: 4; inset: 0; border-radius: inherit; }
.play-button { position: absolute; z-index: 2; top: 50%; left: 50%; width: 78px; height: 78px; border: 1px solid rgba(255, 255, 255, .62); border-radius: 50%; display: grid; place-items: center; color: var(--ink-deep); background: rgba(255, 255, 255, .9); transform: translate(-50%, -50%); font-size: 20px; text-indent: 4px; }
.video-placeholder > div { position: absolute; z-index: 2; right: 30px; bottom: 26px; left: 30px; display: flex; align-items: end; justify-content: space-between; gap: 20px; color: white; }
.video-placeholder strong { font-size: 17px; }
.video-placeholder > div span { color: #c9dce1; font-size: 12px; }
.video-youtube-link { margin-top: 22px; }

.about { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; align-items: center; }
.about-portrait { position: relative; min-height: 690px; overflow: hidden; border-radius: 280px 280px 18px 18px; background: var(--warm-deep); }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.about-signature { position: absolute; right: 24px; bottom: 24px; padding: 20px 22px; border-radius: 14px; color: white; background: rgba(23, 52, 61, .86); backdrop-filter: blur(12px); font-size: 19px; font-weight: 700; line-height: .95; }
.about-signature span { color: #74c0d5; font-weight: 400; }
.about-lead { margin: 26px 0 34px; color: #526970; font-size: 18px; line-height: 1.7; }
.timeline { border-top: 1px solid var(--line); }
.timeline > div { padding: 19px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 100px 1fr; gap: 18px; }
.timeline span { color: var(--blue-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.timeline p { margin: 0; color: #61747b; font-size: 13px; line-height: 1.55; }
.timeline strong { display: block; margin-bottom: 3px; color: var(--ink-deep); font-size: 14px; }
.registration { margin: 28px 0 0; color: var(--blue-dark); font-size: 11px; font-weight: 700; letter-spacing: .12em; }

.testimonials { border-top: 1px solid var(--line); }
.testimonial-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testimonial-card, .testimonial-source { min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .56); }
.testimonial-card { display: flex; flex-direction: column; }
.stars { color: var(--blue); font-size: 13px; letter-spacing: .16em; }
.testimonial-card > p { margin: 28px 0; color: #3f575f; font-size: 16px; line-height: 1.7; white-space: pre-line; }
.testimonial-card footer { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.testimonial-card footer > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--ink); font-size: 11px; font-weight: 700; }
.testimonial-card footer div { display: flex; flex-direction: column; gap: 3px; }
.testimonial-card footer strong { font-size: 13px; }
.testimonial-card footer strong a:hover { color: var(--blue-dark); }
.testimonial-card footer small { color: #7b8c91; font-size: 10px; }
.testimonial-source { display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--blue-dark); transition: transform .2s ease; }
.testimonial-source:hover { transform: translateY(-4px); }
.testimonial-source > span:first-child { color: #c3e6ef; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.testimonial-source strong { max-width: 240px; font-size: 25px; line-height: 1.15; }
.testimonial-source > span:last-child { font-size: 24px; align-self: flex-end; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; border-top: 1px solid var(--line); }
.faq-heading { position: sticky; top: 32px; align-self: start; }
.faq-heading > p:not(.eyebrow) { margin: 28px 0 0; color: #61747b; font-size: 14px; line-height: 1.7; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 27px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; cursor: pointer; color: var(--ink-deep); font-size: 17px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--blue-dark); transition: transform .2s ease; flex: 0 0 auto; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 58px 28px 0; color: #61747b; font-size: 14px; line-height: 1.75; }

.locations { padding: 110px max(24px, calc((100vw - 1180px) / 2)); display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; color: white; background: var(--blue-dark); }
.locations .eyebrow { color: #c7eaf2; }
.locations h2 { color: white; }
.locations-intro > p:not(.eyebrow) { margin: 26px 0 32px; color: #c4dfe6; font-size: 14px; line-height: 1.7; }
.location-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255, 255, 255, .23); border-left: 1px solid rgba(255, 255, 255, .23); }
.location-list article { min-height: 220px; padding: 28px; border-right: 1px solid rgba(255, 255, 255, .23); border-bottom: 1px solid rgba(255, 255, 255, .23); display: flex; flex-direction: column; }
.location-list article > span { color: #b8dbe4; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.location-list h3 { margin: 22px 0 10px; font-size: 20px; }
.location-list address { color: #c9e0e5; font-size: 12px; line-height: 1.55; }
.location-list a { margin-top: auto; padding-top: 18px; font-size: 13px; font-weight: 700; }

.footer { padding: 76px max(24px, calc((100vw - 1180px) / 2)) 24px; color: white; background: var(--ink-deep); }
.footer-main { padding-bottom: 62px; display: grid; grid-template-columns: .65fr .8fr .55fr; gap: 70px; align-items: start; }
.footer-main > a img { width: 250px; height: auto; }
.footer-main > p { margin: 0; color: #9bb7be; font-size: 13px; line-height: 1.75; }
.footer-main nav { display: grid; gap: 12px; font-size: 12px; }
.footer-main nav a:hover { color: #78c7de; }
.footer-bottom { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; justify-content: space-between; gap: 30px; color: #77969e; font-size: 10px; line-height: 1.55; }
.footer-bottom a { max-width: 500px; text-align: right; }
.footer-bottom a:hover { color: #b9d8df; }

.whatsapp-float { position: fixed; z-index: 60; right: 22px; bottom: 22px; padding: 8px 16px 8px 8px; border: 1px solid rgba(255, 255, 255, .6); border-radius: 999px; display: flex; align-items: center; gap: 10px; color: white; background: #176f61; box-shadow: 0 16px 34px rgba(12, 54, 48, .28); font-size: 12px; }
.whatsapp-float span { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #176f61; background: white; font-size: 10px; font-weight: 700; }

@media (max-width: 1100px) {
  .site-header nav { gap: 18px; }
  .site-header nav > a:not(.nav-cta):not(.instagram-link) { display: none; }
  .hero { gap: 36px; }
  .trust-strip { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .trust-strip div:nth-child(3) { border-left: 0; padding-left: 0; }
  .treatment-card { padding: 28px; }
  .procedure-copy { padding-left: 52px; }
  .video-section, .about, .faq { gap: 58px; }
}

@media (max-width: 850px) {
  .section { padding: 88px 0; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; gap: 54px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 650px; }
  .trust-strip { padding-top: 28px; padding-bottom: 28px; }
  .intro, .section-heading-row, .video-section, .about, .faq, .locations { grid-template-columns: 1fr; gap: 48px; }
  .section-heading-row > p { max-width: 600px; }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .minimally-invasive { grid-template-columns: 1fr; }
  .procedure-image { min-height: 620px; }
  .procedure-image::after { background: linear-gradient(180deg, transparent 68%, var(--ink-deep)); }
  .procedure-copy { padding: 70px max(24px, calc((100vw - 720px) / 2)) 84px; }
  .video-copy { max-width: 650px; }
  .about-portrait { width: min(520px, 100%); min-height: 690px; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-heading { position: static; }
  .locations { padding-top: 88px; padding-bottom: 88px; }
  .locations-intro { max-width: 620px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: span 2; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .site-header { width: calc(100% - 32px); height: 88px; }
  .brand { width: 145px; }
  .site-header nav { gap: 8px; }
  .instagram-link { width: 36px; height: 36px; padding: 0; display: grid; place-items: center; font-size: 0; }
  .instagram-link::after { content: "IG"; font-size: 10px; letter-spacing: .04em; }
  .nav-cta { padding: 11px 13px; font-size: 11px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .hero { min-height: auto; padding: 124px 18px 42px; }
  h1 { font-size: clamp(47px, 14.3vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 510px; }
  .hero-frame { left: 0; border-radius: 42% 42% 18px 18px; }
  .hero-note { left: -4px; bottom: 20px; width: 90%; }
  .credentials { display: grid; gap: 8px; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div, .trust-strip div:nth-child(3) { min-height: 50px; padding: 0 0 16px; border-left: 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .trust-strip div:last-child { border-bottom: 0; }
  .section { width: calc(100% - 36px); padding: 76px 0; }
  .section-heading h2, .faq-heading h2, .locations h2, .procedure-copy h2, .about-copy h2, .video-copy h2 { font-size: clamp(37px, 11.5vw, 52px); }
  .intro { gap: 30px; }
  .intro-copy p { font-size: 16px; }
  .treatment-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .treatment-card { min-height: 245px; }
  .procedure-image { min-height: 510px; }
  .procedure-copy { padding: 64px 20px 72px; }
  .video-section { gap: 34px; }
  .video-placeholder { border-radius: 16px; }
  .video-placeholder > div { right: 18px; bottom: 16px; left: 18px; display: block; }
  .video-placeholder > div span { display: none; }
  .play-button { width: 62px; height: 62px; }
  .about { gap: 46px; }
  .about-portrait { min-height: 520px; }
  .timeline > div { grid-template-columns: 78px 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; margin-top: 44px; }
  .testimonial-card, .testimonial-source { min-height: 280px; }
  .faq { gap: 34px; }
  .faq-list summary { font-size: 15px; }
  .location-list { grid-template-columns: 1fr; }
  .location-list article { min-height: 195px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main nav { grid-column: auto; grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom a { text-align: left; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .whatsapp-float strong { display: none; }
  .whatsapp-float { padding: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
