:root {
  --bg: #ffffff;
  --bg-2: #f8fbff;
  --panel: rgba(255,255,255,.92);
  --panel-strong: rgba(255,255,255,.99);
  --card: rgba(255,255,255,.98);
  --text: #27313b;
  --muted: #6b7680;
  --line: rgba(166, 182, 199, .18);
  --primary: #c19d79;
  --primary-2: #e9ca9d;
  --accent: #8eb7d9;
  --radius: 0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Noto Sans SC', system-ui, sans-serif; color: var(--text); background: linear-gradient(180deg, #ffffff 0%, #fbfdff 52%, #f7fbff 100%); overflow-x: hidden; width: 100%; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1260px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px); background: rgba(255,255,255,.88); border-bottom: 1px solid rgba(166,182,199,.12); }
.site-header.scrolled { background: rgba(255,255,255,.96); }
.nav-row { min-height: 72px; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.logo { display:flex; align-items:center; gap:12px; flex: 0 0 auto; }
.logo-img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { font-size: 1.05rem; font-weight: 800; letter-spacing: .08em; color:#c19d79; }
.nav-links { display:flex; align-items:center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { padding: 10px 14px; color:#44505c; font-weight:500; text-transform: uppercase; }
.nav-links a:hover,.nav-links a:focus-visible { color:#c19d79; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(193,157,121,.25); background: #fff; align-items: center; justify-content: center; flex-direction: column; gap: 5px; padding: 0; cursor: pointer; }
.menu-toggle span { width: 18px; height: 2px; background: #c19d79; transition: transform .25s ease, opacity .25s ease; }
.nav-overlay { display: none; }
.mobile-nav { display: none; }
.section { padding: 76px 0; }
.section-head { margin-bottom: 24px; }
.section-head span { letter-spacing: .3em; font-size: .78rem; text-transform: uppercase; color: var(--muted); }
.section-head h3 { margin: 8px 0 0; font-size: clamp(1.55rem, 2vw, 2.6rem); }
.section-head-with-more {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-head-with-more > div {
  display: flex;
  flex-direction: column;
}
.section-head-with-more .section-more-btn {
  align-self: center;
  white-space: nowrap;
  margin-top: 6px;
}

.slider { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 18px;padding-bottom: 55px; transition: transform .65s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.slide { flex: 0 0 100%; min-width: 0; }
.slider[data-visible="2"] .slide { flex-basis: calc((100% - 18px) / 2); }
.slider[data-visible="3"] .slide { flex-basis: calc((100% - 36px) / 3); }
.slider:hover .slider-btn,
.slider:focus-within .slider-btn {
  opacity: 1;
  pointer-events: auto;
}
.slider-btn {
  position: absolute;
  top: 46.5%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.3);
  color: #b48a61;
  font-size: 0;
  line-height: 1;
  padding: 0;
  border: 1px solid rgba(193,157,121,.18);
  box-shadow: 0 16px 32px rgba(165,118,96,.16);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), background-color .35s cubic-bezier(.22,.61,.36,1);
}
.slider-btn::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: var(--arrow-mask) center / contain no-repeat;
  -webkit-mask: var(--arrow-mask) center / contain no-repeat;
}
.slider-btn.prev { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.4 4.6 8 12l7.4 7.4-1.4 1.4L5.2 12 14 3.2z'/%3E%3C/svg%3E"); left: 18px; }
.slider-btn.next { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.6 19.4 16 12 8.6 4.6 10 3.2 18.8 12 10 20.8z'/%3E%3C/svg%3E"); right: 18px; }
.slider-btn:hover,
.slider-btn:focus-visible,
.slider-btn:active {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
}
.slider-dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; justify-content: center; gap: 10px; z-index: 2; }
.slider-dots button { width: 10px; height: 10px; border: 0; background:rgb(193 157 121 / 10%); }
.slider-dots button.active { width: 28px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); }
.hero-slider { background: #fff; width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.hero-section { padding-left: 0; padding-right: 0; }
.hero-fullwidth { width: 100%; }
.hero-slide { min-height: clamp(360px, 56vw, 820px); aspect-ratio: 1600 / 900; display: flex; align-items: end; background-position: center center; background-size: cover; background-repeat: no-repeat; }
.hero-slide::before { background-position: center center; background-size: cover; opacity: 1; }
.hero-slide::after { background: transparent; }
.slide-content { width: 100%; min-height: 100%; display: flex; align-items: end; justify-content: flex-start; padding: 0; background: transparent; }
.hero-cta { position: relative; z-index: 1; display: flex; gap: 12px; margin: 0 0 7vw 6vw; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 18px; border: 1px solid rgba(79,145,255,.10); background: rgba(255,255,255,.94); color: #c19d79; }
.btn.primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; border-color: transparent; }
.list-grid { display: grid; gap: 18px; }
.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cases-grid { grid-template-columns: repeat(2, 1fr); }
.info-card,.case-card,.contact-info,.contact-form,.process-step,.cert-card { background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,253,255,.95)); border: 1px solid rgba(166,182,199,.12); box-shadow: none; }
.info-card { padding: 22px; min-height: 146px; }
.info-card h4,.case-card h4,.process-step strong { margin: 0 0 10px; font-size: 1rem; }
.info-card p,.case-card p,.process-step p { margin: 0; color: var(--muted); line-height: 1.75; }
.case-card { display: grid; overflow: hidden; }
.case-card img { width: 100%; height: 100%; object-fit: cover; }
.case-card div { padding: 22px; }
.news-section { background: linear-gradient(180deg, #ffffff 0%, #fdf8f5 100%); }
.news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.news-card { background: #fff; border: 1px solid rgba(166,182,199,.14); box-shadow: 0 12px 28px rgba(165,118,96,.08); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(193,157,121,.24); box-shadow: 0 18px 34px rgba(165,118,96,.12); }
.news-card-media { display: block; aspect-ratio: 1 / 1; overflow: hidden; }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.news-card:hover .news-card-media img { transform: scale(1.04); }
.news-card-body { padding: 18px 18px 20px; }
.news-card-body h4 { margin: 0 0 10px; font-size: 1.08rem; line-height: 1.5; min-height: 3em; }
.news-card-body h4 a { color: #2d3640; }
.news-card-meta { font-size: .82rem; color: #8b93a7; margin-bottom: 10px; }
.news-card-body p { margin: 0; color: var(--muted); line-height: 1.75; min-height: 5.25em; }
.news-card-more { display: inline-flex; margin-top: 16px; color: #2d3640; font-weight: 600; position: relative; }
.news-card-more::after { content: '›'; margin-left: 6px; color: #c19d79; }
.cases-section { background: linear-gradient(180deg, #fff7ef 0%, #fffdf9 100%); overflow: hidden; }
#cases .section-head { text-align: center; }
#cases .section-head span,
#cases .section-head h3 { display: block; }
#cases .cases-fullwidth { padding-top: 8px; }
#cases .slider { margin: 0 auto; }
#cases .slider-track { justify-content: flex-start; }
#cases .slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: grid;
  justify-items: center;
  min-width: 100%;
}
#cases .case-promo-card {
  width: 100%;
  display: grid;
  justify-items: center;
  background: transparent;
}
#cases .case-promo-card img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
#cases .case-promo-card:hover img { transform: scale(1.03); }
#cases .slider:hover .slider-btn,
#cases .slider:focus-within .slider-btn {
  opacity: 1;
  pointer-events: auto;
}
#cases .slider-btn {
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.3);
  color: #b48a61;
  font-size: 0;
  line-height: 1;
  padding: 0;
  border: 1px solid rgba(193,157,121,.18);
  box-shadow: 0 16px 32px rgba(165,118,96,.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), background-color .35s cubic-bezier(.22,.61,.36,1);
}
#cases .slider-btn::before { content: ''; display: block; width: 18px; height: 18px; background: currentColor; mask: var(--arrow-mask) center / contain no-repeat; -webkit-mask: var(--arrow-mask) center / contain no-repeat; }
#cases .slider-btn.prev { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.4 4.6 8 12l7.4 7.4-1.4 1.4L5.2 12 14 3.2z'/%3E%3C/svg%3E"); left: 130px; }
#cases .slider-btn.next { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.6 19.4 16 12 8.6 4.6 10 3.2 18.8 12 10 20.8z'/%3E%3C/svg%3E"); right: 130px; }
#cases .slider-btn:hover,
#cases .slider-btn:focus-visible,
#cases .slider-btn:active {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
}
.cases-fullwidth { width: 100%; max-width: 100%; margin: 0; padding: 0 20px; }
.cases-grid-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
.case-card-wall {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,.95);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.case-card-wall:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(165,118,96,.10); border-color: rgba(193,157,121,.24); }
.case-card-wall img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.case-card-wall div { padding: 18px; }
.case-card-wall h4 { font-size: 1rem; margin-bottom: 8px; }
.case-card-wall p { font-size: .92rem; line-height: 1.68; }
.doctor-poster-grid,
.doctor-row-grid { display: grid !important; grid-template-columns: repeat(5, minmax(0, 1fr)) !important; gap: 18px !important; }
.doctor-card { display: block; grid-template-columns: 1fr; gap: 12px; align-items: start; min-height: 0; padding: 16px; }
.doctor-avatar { width: 100%; aspect-ratio: 1 / 1.18; overflow: hidden; background: #f7fbff; }
.doctor-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doctor-copy { display: flex; flex-direction: column; justify-content: flex-start; padding: 0; padding-top: 20px; }
.doctor-copy h4 { margin: 0 0 8px; font-size: clamp(1.08rem, 1.25vw, 1.25rem); line-height: 1.1; }
.doctor-title { margin: 0 0 10px; font-size: .82rem; color: #8b735f !important; letter-spacing: .04em; padding-bottom: 10px; border-bottom: 1px solid rgba(166,182,199,.18); }
.doctor-copy p { margin: 0; color: #b6b6b6; line-height: 1.68; font-size: .75rem; }

.info-card.doctor-card { min-height: 0; }
.doctor-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  will-change: transform;
}
.doctor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193,157,121,.28);
  box-shadow: 0 18px 34px rgba(165, 118, 96, .10);
}
.doctor-card:hover .doctor-avatar img {
  transform: scale(1.04);
}
.doctor-avatar img {
  transition: transform .45s cubic-bezier(.22,.61,.36,1), filter .35s ease;
}
.doctor-copy h4,
.doctor-title,
.doctor-copy p {
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}
.doctor-card:hover .doctor-copy h4 { transform: translateY(-1px); }
.doctor-card:hover .doctor-title { color: #b08a62; }
.doctor-card:hover .doctor-copy p { color: #5e6974; }

.container-slider { width: min(1260px, calc(100% - 32px)); margin: 0 auto; overflow: hidden; }
.env-carousel { width: 100%; max-width: 100%; margin-left: 0; padding: 8px 20px 56px; overflow: hidden; }
.env-carousel .slider-track { gap: 20px; transition: transform .6s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.env-carousel .slider-btn {
  z-index: 3;
  top: 34%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.3);
  color: #b48a61;
  font-size: 0;
  line-height: 1;
  padding: 0;
  border: 1px solid rgba(193,157,121,.18);
  box-shadow: 0 16px 32px rgba(165,118,96,.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), background-color .35s cubic-bezier(.22,.61,.36,1);
}
.env-carousel .slider-btn::before { content: ''; display: block; width: 18px; height: 18px; background: currentColor; mask: var(--arrow-mask) center / contain no-repeat; -webkit-mask: var(--arrow-mask) center / contain no-repeat; }
.env-carousel:hover .slider-btn,
.env-carousel:focus-within .slider-btn {
  opacity: 1;
  pointer-events: auto;
}
.env-carousel .slider-btn.prev { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M15.4 4.6 8 12l7.4 7.4-1.4 1.4L5.2 12 14 3.2z'/%3E%3C/svg%3E"); left: 18px; }
.env-carousel .slider-btn.next { --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.6 19.4 16 12 8.6 4.6 10 3.2 18.8 12 10 20.8z'/%3E%3C/svg%3E"); right: 18px; }
.env-carousel .slider-btn:hover,
.env-carousel .slider-btn:focus-visible,
.env-carousel .slider-btn:active {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
}
.env-carousel .slide { flex: 0 0 600px; width: 600px; }
.env-carousel .slide:nth-child(2n) { opacity: .92; }
.env-card { min-height: 350px; padding: 0; display: flex; flex-direction: column; justify-content: flex-start; color: #36424d; background: rgba(255,255,255,.96); }
.env-card img { width: 100%;  object-fit: cover; display: block; }
.env-card h4 { margin: 18px 18px 8px; }
.env-card p { margin: 0 18px 18px; }
.promo-card { min-height: 320px; display: flex; align-items: end; }
.promo-copy { padding: 36px; max-width: 560px; color: #2f3640; }
#breast { background: linear-gradient(180deg, #fff7ef 0%, #fffdf9 100%); }
#breast .section-head { text-align: center; }
#breast .section-head span,
#breast .section-head h3 { display: block; }
#breast .slider { margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 20px; }
.contact-info,.contact-form { padding: 28px; }
.contact-info ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.contact-info li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a { padding: 10px 14px;  }
.socials img { height: 50px; width: auto; display: block; object-fit: contain; }
.contact-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; font-weight: 500; color: #42515d; }
input,select,textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(166,182,199,.14); background: #fff; color: #35404a; outline: none; }
input:focus,select:focus,textarea:focus { border-color: rgba(79,145,255,.28); box-shadow: 0 0 0 4px rgba(79,145,255,.08); }
textarea { resize: vertical; min-height: 150px; }
button[type="submit"] { padding: 15px 18px; border: 0; color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-2)); font-weight: 800; cursor: pointer; }
.process-flow { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 10px; align-items: stretch; }
.process-step,.process-arrow { padding: 18px; min-height: 110px; display: grid; place-items: center; text-align: center; }
.process-step { grid-column: span 2; }
.process-arrow { font-size: 2rem; color: #c19d79; }
.cert-card { padding: 16px; text-align: center; }
.cert-card img { width: 100%; object-fit: cover; background: #f7fbff; }
.site-footer { padding: 34px 0 44px; border-top: 1px solid rgba(166,182,199,.12); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); flex-wrap: wrap; }
@media (max-width: 1200px) { .cards-5 { grid-template-columns: repeat(2, 1fr); } .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cases-grid,.contact-grid { grid-template-columns: 1fr; } .process-flow { grid-template-columns: repeat(2, 1fr); } .process-step { grid-column: span 1; } .doctor-poster-grid,.doctor-row-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } .cases-carousel .case-card { width: 420px; flex-basis: 420px; } }
@media (max-width: 768px) {
  body.menu-open { overflow: hidden; }
  .nav-row { min-height: 64px; }
  .section-head-with-more {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-head-with-more .section-more-btn {
    margin-top: 0;
  }
  .menu-toggle { display: inline-flex; }
  .nav-links { display: none; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 80;
  }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    background: #fff;
    border-left: 1px solid rgba(166,182,199,.2);
    z-index: 90;
    padding: 14px 16px 18px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    contain: paint;
  }
  .mobile-nav-close {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #c19d79;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: block;
  }
  .mobile-nav-links {
    display: grid;
    gap: 4px;
    margin-top: 8px;
  }
  .mobile-nav-links a {
    padding: 12px 8px;
    border-bottom: 1px solid rgba(166,182,199,.14);
    color: #44505c;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .menu-open .nav-overlay { opacity: 1; pointer-events: auto; }
  .menu-open .mobile-nav { display: block; }
  .field-row,.cards-5 { grid-template-columns: 1fr; }
  .hero-slide { min-height: 320px; aspect-ratio: auto; }
  .hero-cta { margin: 0 0 18px 18px; }
  .slide-content,.promo-copy,.contact-info,.contact-form { padding: 22px; }
  .hero-cta { margin-left: 18px; }
  .process-flow { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
  .slider[data-visible="2"] .slide,.slider[data-visible="3"] .slide { flex-basis: 100%; }
  .news-grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 1fr; }
  .case-card img { width: min(800px, 100%); height: auto; }
  .cases-grid-wall { grid-template-columns: 1fr; }
  #breast .promo-card img { height: 220px; }
  #cases .case-slide img { max-width: 800px; height: auto; }
  .doctor-poster-grid,.doctor-row-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .doctor-card { padding: 14px; }
  .doctor-copy h4 { font-size: 1.08rem; }
  .doctor-title { font-size: .82rem; margin-bottom: 8px; }
  .doctor-copy p { font-size: .88rem; line-height: 1.6; }
  .cases-fullwidth { padding: 0 12px; }
  .cases-grid-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .case-card-wall img { max-width: 800px; height: auto; }
  .env-carousel .slider-btn { width: 46px; height: 46px; opacity: 1; pointer-events: auto; }
  #breast .promo-card img { height: 220px; }
  #cases .case-promo-card img { height: 220px; }
  #cases .slider-btn { width: 46px; height: 46px; opacity: 1; pointer-events: auto; }
  #cases .slider-btn.prev { left: 10px; }
  #cases .slider-btn.next { right: 10px; }
  .env-carousel .slider-btn.prev { left: 10px; top:35% !important;}
  .env-carousel .slider-btn.next { right: 10px; top:35% !important;}

  section.section.hero-section{padding-bottom:0 !important;}
  #about-face{padding-top:0 !important;}
 .slider-btn{top:40% !important;}
 .promo-card{display: block;min-height:auto !important;}
 .env-card{min-height:auto !important;}

}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; } }
@media (max-width: 768px) {
  #breast .slider-btn {
    width: 46px;
    height: 46px;
    opacity: 1;
    pointer-events: auto;
  }
  #breast .slider-btn.prev { left: 10px; }
  #breast .slider-btn.next { right: 10px; }
  .inquiry-fab {
    display: inline-flex !important;
    position: fixed !important;
    right: 10px !important;
    bottom: 18px !important;
    top: auto !important;
    left: auto !important;
    width: 70px !important;
    height: 118px !important;
    z-index: 2147483647 !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
  }
  .inquiry-modal {
    z-index: 2147483646 !important;
  }
}
section.section.hero-section { overflow: hidden; }
body.menu-open .inquiry-fab {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-width: calc(100vw - 20px);
}

.inquiry-fab {
  position: fixed !important;
  top: 50% !important;
  right: 20px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  width: 70px;
  height: 145px;
  padding-top: 20px;
  padding-bottom: 20px;
  border: 1px solid #35c16b;
  border-radius: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 34px rgba(16,24,40,.14);
  display: grid !important;
  align-items: center;
  justify-content: center;
  z-index: 2147483647 !important;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.inquiry-fab:hover,
.inquiry-fab:focus-visible {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 22px 40px rgba(16,24,40,.18);
  border-color: #26b95e;
}
.inquiry-fab-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #27c15f url("../img/tel.svg") center/20px 20px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.inquiry-wechat-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #27c15f url("../img/wechat.svg") center/20px 20px no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.inquiry-modal.is-open { display: block; }
.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18,18,18,.62);
  backdrop-filter: blur(2px);
}
.inquiry-modal-dialog {
  position: relative;
  width: min(90vw, 560px);
  margin: 32px auto;
  padding: 28px 26px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  z-index: 1;
}
.inquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #687084;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.inquiry-eyebrow {
  margin: 0 0 10px;
  letter-spacing: .35em;
  color: #8b93a7;
  font-size: .82rem;
}
.inquiry-modal h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2rem);
  line-height: 1.1;
  font-weight: 600;
}
.inquiry-subtitle {
  margin: 10px 0 22px;
  color: #71798c;
  font-size: 1rem;
}
.inquiry-group {
  padding: 18px;
  border: 1px solid rgba(180,189,204,.35);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #fbfcff);
}
.inquiry-group + .inquiry-group { margin-top: 16px; }
.inquiry-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.inquiry-group-head h4 { margin: 0; font-size: 1.2rem; color: #344150; }
.inquiry-group-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(180,189,204,.28);
  box-shadow: 0 8px 18px rgba(16,24,40,.08);
  display: inline-block;
  flex: 0 0 auto;
  position: relative;
}
.inquiry-group-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  background: #1f2937;
  mask: center / contain no-repeat;
  -webkit-mask: center / contain no-repeat;
}
.inquiry-group-icon.whatsapp::before {
  background: #111827;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.5 11.8a8.5 8.5 0 1 0-15.1 5.5L4 22l4.9-1.3a8.5 8.5 0 0 0 11.6-8.9Zm-8.5 7a7 7 0 0 1-3.6-1l-.26-.16-2.9.76.78-2.82-.17-.29a7 7 0 1 1 6.2 3.51Zm4.06-5.43c-.22-.11-1.28-.63-1.48-.7-.2-.07-.34-.11-.49.11-.15.22-.57.7-.7.84-.13.15-.25.16-.47.06-.22-.11-.94-.35-1.79-1.11-.66-.59-1.11-1.31-1.24-1.53-.13-.22-.01-.34.1-.45.1-.1.22-.25.33-.38.11-.13.15-.22.22-.37.07-.15.03-.28-.02-.38-.05-.1-.49-1.19-.68-1.63-.18-.43-.36-.37-.49-.38l-.42-.01c-.15 0-.38.06-.58.28-.2.22-.77.76-.77 1.85s.8 2.15.91 2.29c.11.15 1.55 2.4 3.76 3.37.53.23.95.37 1.27.47.54.17 1.03.15 1.42.09.44-.07 1.31-.54 1.5-1.06.18-.53.18-.98.13-1.07-.05-.1-.2-.16-.42-.27Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.5 11.8a8.5 8.5 0 1 0-15.1 5.5L4 22l4.9-1.3a8.5 8.5 0 0 0 11.6-8.9Zm-8.5 7a7 7 0 0 1-3.6-1l-.26-.16-2.9.76.78-2.82-.17-.29a7 7 0 1 1 6.2 3.51Zm4.06-5.43c-.22-.11-1.28-.63-1.48-.7-.2-.07-.34-.11-.49.11-.15.22-.57.7-.7.84-.13.15-.25.16-.47.06-.22-.11-.94-.35-1.79-1.11-.66-.59-1.11-1.31-1.24-1.53-.13-.22-.01-.34.1-.45.1-.1.22-.25.33-.38.11-.13.15-.22.22-.37.07-.15.03-.28-.02-.38-.05-.1-.49-1.19-.68-1.63-.18-.43-.36-.37-.49-.38l-.42-.01c-.15 0-.38.06-.58.28-.2.22-.77.76-.77 1.85s.8 2.15.91 2.29c.11.15 1.55 2.4 3.76 3.37.53.23.95.37 1.27.47.54.17 1.03.15 1.42.09.44-.07 1.31-.54 1.5-1.06.18-.53.18-.98.13-1.07-.05-.1-.2-.16-.42-.27Z'/%3E%3C/svg%3E");
}
.inquiry-group-icon.wechat::before {
  background: #111827;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.9 14.7a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2Zm6.1 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2Zm-2.98-11.2C6.2 3.5 2 6.18 2 10.2c0 2.24 1.3 4.09 3.42 5.31l-.64 2.33 2.47-1.06c.94.23 1.95.35 2.82.35.27 0 .54-.01.8-.03- .29-.55-.45-1.17-.45-1.83 0-2.61 2.36-4.72 5.27-4.72.45 0 .89.05 1.3.14-.3-3.71-3.66-6.45-7.15-6.45Zm-2.65 7.12a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Zm5.8 0a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8.9 14.7a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2Zm6.1 0a1.1 1.1 0 1 0 0-2.2 1.1 1.1 0 0 0 0 2.2Zm-2.98-11.2C6.2 3.5 2 6.18 2 10.2c0 2.24 1.3 4.09 3.42 5.31l-.64 2.33 2.47-1.06c.94.23 1.95.35 2.82.35.27 0 .54-.01.8-.03-.29-.55-.45-1.17-.45-1.83 0-2.61 2.36-4.72 5.27-4.72.45 0 .89.05 1.3.14-.3-3.71-3.66-6.45-7.15-6.45Zm-2.65 7.12a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Zm5.8 0a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Z'/%3E%3C/svg%3E");
}
.inquiry-item {
  display: block;
  padding: 13px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(226,231,238,.95);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 6px 18px rgba(16,24,40,.04);
  color: #1f2937;
  margin-top: 10px;
}
.inquiry-item:hover,
.inquiry-item:focus-visible { border-color: rgba(37, 190, 96, .45); box-shadow: 0 10px 18px rgba(37,190,96,.08); }
@media (max-width: 768px) {
  .inquiry-fab {
    display: grid !important;
    position: fixed !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    bottom: max(18px, env(safe-area-inset-bottom)) !important;
    top: auto !important;
    left: auto !important;
    width: 56px !important;
    height: 140px !important;
    max-width: calc(100vw - 20px) !important;
    box-sizing: border-box !important;
    z-index: 999999 !important;
    transform: none !important;
  }
  .inquiry-fab-icon { width: 36px; height: 36px; background-size: 18px 18px; }
  .inquiry-modal { display: none; z-index: 10000; }
  .inquiry-modal.is-open { display: block; }
  .inquiry-modal-dialog { margin: 12px auto; padding: 22px 16px 18px; border-radius: 24px; }
  .inquiry-group { padding: 14px; border-radius: 18px; }
  .inquiry-group-icon { width: 42px; height: 42px; border-radius: 14px; }
}