@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap');

:root {
  --ink: #161b2c;
  --navy: #10235b;
  --navy-deep: #101e63;
  --gold: #d6b96b;
  --gold-bright: #e8cf66;
  --red: #9b0c1b;
  --blue: #315a9a;
  --muted: #646b7a;
  --line: #d9dee8;
  --cream: #fbf8f3;
  --soft: #f9fafc;
  --white: #fff;
  --black: #000;
  --content: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { letter-spacing: 0; text-wrap: balance; }
p { text-wrap: pretty; }

.site-header {
  position: relative;
  z-index: 20;
  height: 88px;
  background: var(--black);
  color: var(--white);
}
.header-inner {
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.brand { width: 76px; min-width: 56px; }
.brand img { width: 100%; height: 34px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 36px; font-size: 15px; font-weight: 500; }
.site-nav a { position: relative; padding: 12px 0; }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease-out;
}
.site-nav a:hover::after, .site-nav a[aria-current='page']::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: '';
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition-property: transform, opacity;
  transition-duration: 180ms;
}
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition-property: transform, background-color, color, border-color;
  transition-duration: 160ms;
}
.btn:active { transform: scale(.96); }
.btn-gold { min-height: 42px; background: var(--gold-bright); color: var(--black); }
.btn-primary { background: var(--navy-deep); color: var(--white); }
.btn-light { background: white; color: var(--navy); border-color: var(--navy); }
.btn-outline { background: white; color: var(--black); border-color: var(--black); }
.btn:hover { filter: brightness(.96); }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid rgba(232, 207, 102, .75);
  outline-offset: 3px;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #eef1f3;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(77%, 1100px);
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72) 58%, rgba(255,255,255,0));
  pointer-events: none;
}
.hero.no-overlay::after { display: none; }
.hero-carousel {
  display: block;
}
.hero-carousel::after { display: none; }
.hero-track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 800ms cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.hero-track.is-resetting { transition: none; }
.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 80px));
  margin: 0 auto;
}
.hero-copy { max-width: 680px; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow.gold { color: #c99828; }
.eyebrow.light { color: #dbdbe1; }
.hero h1 { font-size: 54px; line-height: 1.25; font-weight: 800; }
.hero-desc { margin-top: 22px; color: #5e6677; font-size: 17px; line-height: 1.88; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.hero-trust { margin-top: 30px; color: var(--navy); font: 700 12px Inter, sans-serif; }

.proof-strip { background: var(--black); color: var(--gold); }
.proof-grid {
  width: min(var(--content), 100%);
  min-height: 160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.proof-item { min-height: 72px; padding: 0 34px; display: flex; flex-direction: column; justify-content: center; }
.proof-item + .proof-item { border-left: 1px solid rgba(255,255,255,.22); }
.proof-item strong { font: 600 22px/1.3 Inter, sans-serif; }
.proof-item span { margin-top: 8px; font-size: 14px; }

.section { padding: 80px 24px; }
.container { width: min(var(--content), 100%); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 40px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: 36px; line-height: 1.34; font-weight: 700; }
.section-heading p { margin-top: 12px; font-size: 16px; line-height: 1.7; }

.benefit-grid, .card-grid, .product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.benefit-card { min-height: 166px; padding: 28px; border-radius: 24px; }
.benefit-card:nth-child(1) { background: #e6f0f7; }
.benefit-card:nth-child(2) { background: #f5e8ef; }
.benefit-card:nth-child(3) { background: #eef1f3; }
.benefit-card h3 { font-size: 24px; line-height: 1.4; }
.benefit-card p { margin-top: 16px; font-size: 14px; line-height: 1.65; }

.navy-section { background: var(--navy-deep); color: white; }
.red-section { background: #b00618; color: white; }
.gold-section { background: var(--gold-bright); }
.cream-section { background: var(--cream); }
.soft-section { background: var(--soft); }
.product-card {
  overflow: hidden;
  background: white;
  color: var(--ink);
  border-radius: 24px;
  box-shadow: 0 12px 32px -4px rgba(15,28,110,.12);
}
.product-card img { width: 100%; aspect-ratio: 1.62; object-fit: cover; outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }
.product-card-body { min-height: 145px; padding: 18px 24px 24px; }
.product-label { color: #c51122; font: 600 12px Inter, sans-serif; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; font-size: 22px; line-height: 1.4; }
.product-card p { margin-top: 7px; color: #5f575a; font-size: 14px; line-height: 1.55; }

.image-copy-section { min-height: 650px; position: relative; overflow: hidden; display: flex; align-items: center; }
.image-copy-section > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.image-copy { position: relative; z-index: 1; max-width: 820px; }
.proof-list { margin-top: 26px; display: grid; gap: 20px; }
.proof-line { display: grid; grid-template-columns: 32px minmax(150px, auto) 1fr; align-items: center; gap: 22px; }
.proof-line img { width: 32px; height: 32px; object-fit: contain; }
.proof-line strong { font-size: 19px; }
.proof-line span { font-size: 17px; }

.contact-cta { padding: 70px 24px; background: black; color: var(--gold); text-align: center; }
.contact-cta .eyebrow { color: var(--gold); }
.contact-cta h2 { font-size: 36px; }
.contact-cta p { margin: 16px auto 24px; max-width: 620px; }

.site-footer { min-height: 220px; padding: 52px 24px; background: black; color: var(--gold); }
.footer-inner { width: min(var(--content), 100%); margin: 0 auto; display: flex; gap: 120px; align-items: flex-start; }
.footer-brand { display: flex; align-items: flex-start; gap: 18px; }
.footer-brand img { width: 76px; height: 42px; object-fit: contain; }
.footer-copy { font-size: 12px; line-height: 1.8; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 13px; font-weight: 700; }

/* Company */
.company-story { min-height: 1160px; padding: 72px 24px; position: relative; text-align: center; overflow: hidden; }
.company-watermark { position: absolute; width: 420px; height: 470px; object-fit: cover; opacity: .12; left: 50%; top: 360px; transform: translateX(-50%); }
.company-mark { position: relative; color: var(--gold); font-family: Georgia, serif; font-size: 88px; line-height: 1; }
.company-lead { position: relative; margin: 28px auto 60px; max-width: 900px; font-size: 34px; line-height: 1.45; font-weight: 900; }
.company-body { position: relative; max-width: 1040px; margin: 0 auto; font-size: 21px; line-height: 2.15; }
.company-close { position: relative; margin-top: 60px; font-size: 25px; line-height: 1.9; font-weight: 900; }

/* Products */
.tech-intro { padding: 76px 24px 90px; }
.tech-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.tech-card { min-height: 280px; padding: 28px; border-radius: 28px; background: var(--navy-deep); color: #eef0f2; }
.tech-card.red { background: var(--red); }
.tech-card .num { font: 600 13px Inter, sans-serif; }
.tech-card h3 { margin-top: 20px; font-size: 32px; }
.tech-card strong { display: block; margin-top: 8px; font-size: 15px; }
.tech-card p { margin-top: 22px; font-size: 15px; line-height: 1.7; }
.quick-menu { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.quick-link {
  min-height: 110px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f9fafc;
  transition: background-color 180ms ease-out, color 180ms ease-out;
}
.quick-link:hover,
.quick-link:focus-visible {
  background: #10235b;
  color: #fff;
}
.quick-link small { display: block; color: #8b6fa4; font: 600 12px Inter, sans-serif; }
.quick-link:hover small,
.quick-link:focus-visible small { color: #fff; }
.quick-link strong { display: block; margin-top: 8px; font-size: 18px; }
.feature-product { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 7%; }
.feature-product > img { width: 100%; min-height: 510px; object-fit: cover; border-radius: 30px; outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }
.feature-copy h2 { font-size: 44px; }
.feature-copy > p { margin-top: 14px; font-size: 18px; line-height: 1.65; }
.number-list { margin: 42px 0; display: grid; gap: 24px; }
.number-list li { list-style: none; display: grid; grid-template-columns: 28px 1fr; gap: 18px; font-weight: 700; }
.number-list span { font: 600 13px Inter, sans-serif; }
.catalog-section .section-heading { display: flex; justify-content: space-between; max-width: none; align-items: end; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.catalog-grid.two { grid-template-columns: repeat(2, minmax(0, 475px)); justify-content: center; }

.ampoule-carousel-section {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 96px;
  background: #10235b;
}
.ampoule-carousel-section .container { width: min(1298px, 100%); }
.ampoule-carousel-section .section-heading { margin-bottom: 58px; }
.ampoule-carousel-section .section-heading h2 { text-transform: uppercase; }
.product-carousel-shell { position: relative; }
.product-carousel-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.product-carousel-viewport::-webkit-scrollbar { display: none; }
.product-carousel-track {
  display: flex;
  gap: 58px;
}
.carousel-card {
  flex: 0 0 calc((100% - 116px) / 3);
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 24px;
  box-shadow: none;
}
.carousel-card .product-image {
  position: relative;
  padding: 20px 20px 0;
}
.carousel-card .product-image img {
  width: 100%;
  aspect-ratio: 1.66;
  border-radius: 16px;
  object-fit: cover;
}
.carousel-card .product-card-body {
  min-height: 152px;
  padding: 12px 20px 24px;
}
.carousel-card .product-label { font-size: 10px; }
.carousel-card h3 {
  min-height: 58px;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}
.carousel-card p { margin-top: 2px; font-size: 12px; }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  min-width: 84px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #10235b;
  color: #fff;
  font: 700 11px/1.2 'Noto Sans KR', sans-serif;
  text-align: center;
}
.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(16, 35, 91, .16);
  border-radius: 50%;
  background: #fff;
  color: #10235b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
  font: 500 25px/1 Inter, sans-serif;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 160ms ease-out, color 160ms ease-out, transform 160ms ease-out, opacity 160ms ease-out;
}
.carousel-arrow--prev { left: 12px; }
.carousel-arrow--next { right: 12px; }
.carousel-arrow:hover:not(:disabled) { background: #e8cf66; color: #000; }
.carousel-arrow:active:not(:disabled) { transform: translateY(-50%) scale(.96); }
.carousel-arrow:disabled { opacity: .32; cursor: default; }

/* Skin care */
.skin-hero::after { width: 55%; background: linear-gradient(90deg, rgba(255,255,255,.16), transparent); }
.skin-hero .hero-copy { color: #161b2c; }
.skin-catalog { padding: 90px 24px 110px; }
.skin-catalog h2 { margin-bottom: 50px; font-size: 36px; }
.skin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 22px; }
.skin-card { text-align: center; }
.skin-card img { width: 100%; aspect-ratio: 1.007; object-fit: cover; outline: 1px solid rgba(0,0,0,.1); outline-offset: -1px; }
.skin-card h3 { padding: 10px 4px 0; min-height: 56px; font-size: 16px; line-height: 1.5; }

/* Academy */
.academy-philosophy { min-height: 620px; position: relative; overflow: hidden; display: grid; place-items: center; }
.academy-philosophy > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.philosophy-grid { position: relative; width: min(1320px, calc(100% - 48px)); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 14%; }
.mission-card { min-height: 442px; padding: 100px 40px 36px; border: 1px solid #f5e8d1; border-radius: 28px; background: var(--red); color: #eef0f2; }
.mission-card p { font-size: 28px; line-height: 1.55; font-weight: 700; }
.mission-card small { display: block; margin-top: 72px; font-size: 10px; font-weight: 700; }
.philosophy-copy h2 { font-size: 40px; line-height: 1.3; }
.philosophy-copy p { margin-top: 24px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.practice-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.practice-card { min-height: 286px; padding: 24px 20px; border-radius: 20px; background: white; color: var(--ink); box-shadow: 0 10px 10px rgba(0,0,0,.25); }
.practice-card .num { color: #c99828; font: 600 12px Inter, sans-serif; }
.practice-card h3 { margin-top: 24px; font-size: 18px; }
.practice-card p { margin-top: 24px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.practice-card small { display: block; margin-top: 72px; padding-top: 16px; border-top: 1px solid #d8dce5; color: #8b6fa4; font-size: 10px; font-weight: 700; }
.faq-list { display: grid; gap: 16px; }
.faq-row { display: grid; grid-template-columns: 268px 1fr; gap: 60px; }
.faq-q, .faq-a { min-height: 70px; padding: 20px 22px; border: 1px solid #d8dce5; border-radius: 12px; background: white; font-weight: 700; }
.faq-a { background: var(--soft); border-color: black; font-size: 18px; }
.academy-banner { background: var(--red); color: white; }

/* Contact */
.contact-form-section { padding: 72px 24px 90px; background: var(--cream); }
.form-shell { width: min(900px, 100%); margin: 0 auto; }
.form-shell h2 { font-size: 42px; }
.form-intro { margin-top: 12px; color: #6e7584; font-size: 17px; }
.contact-form { margin-top: 52px; display: grid; gap: 26px; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field { display: grid; gap: 12px; }
.field label { font-size: 16px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
}
.field input, .field select { height: 64px; }
.field textarea { min-height: 220px; padding-top: 18px; padding-bottom: 18px; resize: vertical; line-height: 1.7; }
.consent { margin-top: 36px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; }
.consent input { width: 24px; height: 24px; accent-color: var(--navy); }
.consent label { cursor: pointer; }
.consent-detail-button {
  min-width: 72px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.consent-detail-button:focus-visible { outline: 3px solid rgba(49, 90, 154, .28); outline-offset: 3px; }
.submit-btn { width: 100%; margin-top: 12px; border-radius: 12px; }
.submit-btn:disabled { cursor: wait; opacity: .68; }
.form-footnote { color: #7c8493; font-size: 13px; text-align: center; }
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  max-width: 360px;
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition-property: opacity, transform;
  transition-duration: 180ms;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #9b0c1b; }
.consent-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.consent-dialog::backdrop { background: rgba(0, 0, 0, .62); }
.consent-dialog-inner { display: flex; max-height: inherit; flex-direction: column; }
.consent-dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--line);
}
.consent-dialog-header h2 { margin-top: 7px; font-size: 28px; line-height: 1.35; }
.consent-dialog-close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.consent-dialog-close:active { transform: scale(.96); }
.consent-dialog-content { overflow-y: auto; padding: 24px 28px; }
.consent-dialog-content > p:first-child { color: #5f6675; line-height: 1.7; }
.consent-terms { margin: 22px 0 0; }
.consent-terms > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.consent-terms dt { font-weight: 800; }
.consent-terms dd { margin: 0; color: #525968; line-height: 1.7; }
.legal-draft-note {
  margin-top: 22px;
  padding: 16px;
  background: #f5f6f8;
  color: #646b7a;
  font-size: 13px;
  line-height: 1.7;
}
.consent-dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--line);
}
.consent-dialog-actions .btn { min-width: 132px; border-radius: 8px; }

.contact-notice-section,
.contact-inquiry-section { padding: 92px 24px 108px; background: var(--cream); border-top: 1px solid #d9dee8; }
.contact-inquiry-section { padding-top: 96px; }
.contact-wide-shell { width: min(1140px, 100%); margin: 0 auto; }
.contact-wide-shell h2,
.contact-inquiry-section h2 { margin-top: 8px; font-size: 42px; }
.notice-board { margin-top: 54px; border-top: 2px solid var(--navy); }
.notice-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 132px;
  gap: 24px;
  align-items: center;
  min-height: 112px;
  padding: 20px 24px;
  border-bottom: 1px solid #d9dee8;
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease-out;
}
.notice-row:hover { background: rgba(255, 255, 255, .72); }
.notice-row:focus-visible { position: relative; z-index: 1; outline: 3px solid rgba(49, 90, 154, .28); outline-offset: -3px; }
.notice-number { color: #6e7584; font-size: 19px; text-align: center; }
.notice-row h3 { color: var(--ink); font-size: 18px; line-height: 1.5; }
.notice-row p { display: none; margin-top: 8px; color: #6e7584; font-size: 14px; line-height: 1.6; }
.notice-row time { color: #6e7584; font-size: 14px; text-align: right; }
.notice-loading,
.notice-empty { padding: 44px 24px; border-bottom: 1px solid #d9dee8; color: #6e7584; text-align: center; }
.notice-pagination { display: flex; justify-content: center; gap: 8px; min-height: 40px; margin-top: 28px; }
.notice-pagination button {
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #5e5e5e;
  cursor: pointer;
}
.notice-pagination button.is-active { background: var(--navy); color: #fff; }
.notice-pagination button:focus-visible { outline: 3px solid rgba(49, 90, 154, .28); outline-offset: 2px; }
.notice-detail-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.notice-detail-dialog::backdrop { background: rgba(0, 0, 0, .62); }
.notice-detail-shell { padding: 30px; }
.notice-detail-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.notice-detail-header h2 { margin-top: 8px; font-size: 28px; line-height: 1.45; }
.notice-detail-close {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
}
.notice-detail-shell > time { display: block; margin-top: 18px; color: #7c8493; font-size: 14px; }
.notice-detail-content { min-height: 180px; margin-top: 24px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #4b5363; line-height: 1.85; white-space: pre-wrap; overflow-wrap: anywhere; }
.notice-detail-shell > footer { display: flex; justify-content: flex-end; padding-top: 22px; }
.notice-detail-shell > footer .btn { min-width: 120px; border-radius: 8px; }

/* Legal pages */
.legal-main { background: #fff; }
.legal-hero {
  padding: 150px 24px 82px;
  background: var(--navy);
  color: #fff;
}
.legal-hero-inner { width: min(1180px, 100%); margin: 0 auto; }
.legal-hero h1 { margin-top: 15px; font-size: 54px; line-height: 1.18; }
.legal-hero p:not(.eyebrow) { max-width: 680px; margin-top: 20px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }
.legal-hero time { display: block; margin-top: 30px; color: rgba(255,255,255,.58); font-size: 14px; }
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 72px;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 120px;
}
.legal-toc { position: sticky; top: 104px; align-self: start; display: grid; gap: 4px; border-top: 2px solid var(--navy); padding-top: 18px; }
.legal-toc strong { margin-bottom: 9px; color: var(--ink); font-size: 15px; }
.legal-toc a { padding: 8px 0; color: #697180; font-size: 14px; line-height: 1.4; }
.legal-toc a:hover, .legal-toc a:focus-visible { color: var(--navy); }
.legal-article { min-width: 0; color: #434b59; }
.legal-notice { margin-bottom: 52px; border-left: 4px solid var(--gold); padding: 22px 24px; background: #f6f7f9; }
.legal-notice strong { color: var(--ink); font-size: 17px; }
.legal-notice p { margin-top: 8px; color: #616978; line-height: 1.75; }
.legal-section { scroll-margin-top: 110px; padding: 0 0 46px; }
.legal-section + .legal-section { border-top: 1px solid var(--line); padding-top: 46px; }
.legal-section h2 { color: var(--ink); font-size: 27px; line-height: 1.4; }
.legal-section h3 { margin-top: 30px; color: var(--ink); font-size: 18px; line-height: 1.5; }
.legal-section p, .legal-section li { font-size: 16px; line-height: 1.9; }
.legal-section h2 + p, .legal-section h2 + ol, .legal-section h2 + ul, .legal-section h2 + .legal-table-wrap, .legal-section h2 + .legal-contact,
.legal-section h3 + p, .legal-section h3 + .legal-table-wrap { margin-top: 18px; }
.legal-section p + p, .legal-section p + h3, .legal-section .legal-table-wrap + p { margin-top: 20px; }
.legal-section ol, .legal-section ul { padding-left: 23px; }
.legal-section li + li { margin-top: 9px; }
.legal-section a, .legal-draft-note a { color: #244f94; text-decoration: underline; text-underline-offset: 3px; }
.legal-table-wrap { overflow-x: auto; border-top: 2px solid var(--navy); }
.legal-table { width: 100%; min-width: 620px; border-collapse: collapse; text-align: left; }
.legal-table th, .legal-table td { padding: 16px 14px; border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.65; }
.legal-table th { background: #f6f7f9; color: var(--ink); font-size: 14px; }
.legal-table td { font-size: 14px; }
.legal-contact { border: 1px solid var(--line); padding: 22px 24px; background: #fbfbfc; }
.legal-disclaimer { margin-top: 24px; padding: 20px 22px; background: #101c44; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.8; }
.footer-links a[aria-current="page"] { color: var(--gold); }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .header-inner { width: calc(100% - 32px); grid-template-columns: 1fr auto; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 72px 0 0;
    padding: 42px 24px;
    background: black;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 220ms ease-out;
  }
  .menu-open .site-nav { transform: translateX(0); }
  .site-nav a { min-height: 56px; display: flex; align-items: center; font-size: 20px; border-bottom: 1px solid rgba(255,255,255,.15); }
  .hero { min-height: 680px; align-items: flex-end; }
  .hero::after { width: 100%; background: linear-gradient(0deg, rgba(255,255,255,.98) 4%, rgba(255,255,255,.74) 56%, rgba(255,255,255,.05)); }
  .hero-bg { object-position: 68% center; }
  .hero-slide--product img { object-position: 68% center; }
  .hero-slide--treatment img { object-position: 56% center; }
  .hero-slide--model img { object-position: 70% center; }
  .hero-content { width: calc(100% - 40px); padding-bottom: 54px; }
  .hero-copy { max-width: 580px; }
  .hero h1 { font-size: 40px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item { padding: 22px; }
  .proof-item + .proof-item { border-left: 0; }
  .proof-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.22); }
  .proof-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.22); }
  .benefit-grid, .card-grid, .product-grid, .catalog-grid, .tech-cards { grid-template-columns: 1fr; }
  .catalog-grid.two { grid-template-columns: 1fr; }
  .product-carousel-track { gap: 28px; }
  .carousel-card { flex-basis: calc((100% - 28px) / 2); }
  .quick-menu { grid-template-columns: repeat(2, 1fr); }
  .feature-product { grid-template-columns: 1fr; }
  .feature-product > img { min-height: 360px; }
  .company-story { min-height: auto; }
  .company-mark { font-size: 64px; }
  .company-lead { font-size: 27px; }
  .company-body { font-size: 17px; line-height: 1.95; }
  .proof-line { grid-template-columns: 32px 1fr; }
  .proof-line span { grid-column: 2; }
  .skin-grid { grid-template-columns: repeat(3, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; gap: 36px; padding: 50px 0; }
  .academy-philosophy { min-height: 940px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-row { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .legal-hero { padding-top: 122px; }
  .legal-hero h1 { font-size: 44px; }
  .legal-layout { grid-template-columns: 1fr; gap: 42px; }
  .legal-toc { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-toc strong { grid-column: 1 / -1; }
  .notice-row { grid-template-columns: 48px minmax(0, 1fr) 104px; padding-inline: 12px; }
}

@media (max-width: 560px) {
  .section { padding: 64px 20px; }
  .hero { min-height: 650px; }
  .hero-bg { object-position: 64% top; }
  .hero-slide--product img { object-position: 64% top; }
  .hero-slide--treatment img { object-position: 57% center; }
  .hero-slide--model img { object-position: 88% center; }
  .hero h1 { font-size: 34px; line-height: 1.3; }
  .hero-desc { font-size: 15px; line-height: 1.75; }
  .section-heading h2, .contact-cta h2 { font-size: 29px; }
  .proof-item strong { font-size: 17px; }
  .proof-item span { font-size: 12px; }
  .quick-menu { grid-template-columns: 1fr; }
  .ampoule-carousel-section { padding-left: 20px; padding-right: 20px; }
  .ampoule-carousel-section .section-heading { align-items: flex-start; gap: 22px; }
  .product-carousel-track { gap: 16px; }
  .carousel-card { flex-basis: 100%; }
  .carousel-arrow { width: 44px; height: 44px; }
  .carousel-arrow--prev { left: 8px; }
  .carousel-arrow--next { right: 8px; }
  .skin-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .skin-card h3 { font-size: 13px; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-card small { margin-top: 34px; }
  .mission-card { min-height: 360px; padding-top: 72px; }
  .mission-card p { font-size: 23px; }
  .philosophy-copy h2 { font-size: 30px; }
  .contact-form-section { padding: 58px 20px 74px; }
  .form-shell h2 { font-size: 34px; }
  .contact-notice-section, .contact-inquiry-section { padding: 64px 20px 76px; }
  .contact-wide-shell h2, .contact-inquiry-section h2 { font-size: 34px; }
  .notice-board { margin-top: 38px; }
  .notice-row { grid-template-columns: 32px minmax(0, 1fr); gap: 12px; min-height: 96px; padding: 18px 4px; }
  .notice-number { font-size: 15px; }
  .notice-row h3 { font-size: 15px; }
  .notice-row time { grid-column: 2; font-size: 12px; text-align: left; }
  .notice-detail-shell { padding: 24px 20px 20px; }
  .notice-detail-header h2 { font-size: 22px; }
  .notice-detail-content { min-height: 150px; padding: 22px 0; }
  .notice-detail-shell > footer .btn { width: 100%; }
  .consent { grid-template-columns: auto 1fr; }
  .consent-detail-button { grid-column: 2; justify-self: start; }
  .footer-links { gap: 20px; }
  .consent-dialog-header { padding: 22px 20px 18px; }
  .consent-dialog-header h2 { font-size: 23px; }
  .consent-dialog-content { padding: 20px; }
  .consent-terms > div { grid-template-columns: 1fr; gap: 7px; padding: 15px 0; }
  .consent-dialog-actions { padding: 16px 20px 20px; }
  .consent-dialog-actions .btn { min-width: 0; flex: 1; padding: 0 12px; }
  .legal-hero { padding: 112px 20px 58px; }
  .legal-hero h1 { font-size: 36px; }
  .legal-hero p:not(.eyebrow) { font-size: 16px; }
  .legal-layout { width: calc(100% - 40px); padding: 56px 0 80px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-section { padding-bottom: 38px; }
  .legal-section + .legal-section { padding-top: 38px; }
  .legal-section h2 { font-size: 23px; }
  .legal-notice { margin-bottom: 42px; padding: 18px; }
}

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