:root {
  --wine: #64283b;
  --wine-deep: #3d1825;
  --wine-soft: #9d6676;
  --ink: #2b2628;
  --muted: #756d70;
  --cream: #f7f2ed;
  --ivory: #fcfaf7;
  --line: #e8dfda;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(58, 34, 42, .12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}


p,
small {
  font-weight: 600;
}
a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1200px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: var(--wine);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(100, 40, 59, .08);
  background: rgba(255, 255, 255, .96);
}

.topbar {
  min-height: 38px;
  color: rgba(255, 255, 255, .76);
  background: var(--wine-deep);
  font-size: 13px;
  letter-spacing: .03em;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover {
  color: #fff;
}

.nav-wrap {
  display: flex;
  width: min(1320px, calc(100% - 48px));
  min-height: 88px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand strong {
  color: var(--wine);
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.09em;
}

.brand span {
  margin-top: 8px;
  color: #8f7f84;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .31em;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 18px);
}

.nav-item {
  position: relative;
  flex: none;
}

.nav-item__top {
  display: flex;
  align-items: center;
}

.nav-item__top > a {
  position: relative;
  padding: 31px 0 29px;
  color: #4b4447;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.nav-item__top > a::after {
  position: absolute;
  right: 50%;
  bottom: 22px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--wine);
  transition: right .2s ease, left .2s ease;
}

.nav-item__top > a:hover,
.nav-item.is-open .nav-item__top > a {
  color: var(--wine);
}

.nav-item__top > a:hover::after,
.nav-item.is-open .nav-item__top > a::after {
  right: 0;
  left: 0;
}

.submenu-toggle {
  position: relative;
  width: 23px;
  height: 42px;
  flex: none;
  margin-left: 2px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.submenu-toggle span {
  position: absolute;
  top: 16px;
  left: 7px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #9b8c91;
  border-bottom: 2px solid #9b8c91;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.nav-item.is-open .submenu-toggle span,
.submenu-toggle[aria-expanded="true"] span {
  top: 19px;
  transform: rotate(225deg);
}

.submenu {
  position: absolute;
  top: calc(100% - 11px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 220px;
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 13px;
  border: 1px solid rgba(100, 40, 59, .11);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 55px rgba(55, 32, 39, .16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.submenu--wide {
  min-width: 420px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submenu--mega {
  min-width: 660px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.submenu--right {
  right: 0;
  left: auto;
  transform: translateY(12px);
}

.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: #5f5559;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus {
  color: var(--wine);
  background: #f8f1f3;
  outline: none;
}

.nav-item:hover > .submenu,
.nav-item.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-item:hover > .submenu--right,
.nav-item.is-open > .submenu--right {
  transform: translateY(0);
}

.nav-call {
  display: inline-flex;
  min-height: 42px;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 750;
}

.nav-call:hover {
  color: #fff;
  background: var(--wine);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--wine);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #f5ebe3;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../image/main/theart-hero-2026.jpg") center center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(252, 248, 243, .98) 0%, rgba(252, 248, 243, .88) 32%, rgba(252, 248, 243, .2) 59%, rgba(252, 248, 243, 0) 100%);
}

.hero__inner {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: end;
  gap: 70px;
  padding-top: 100px;
  padding-bottom: 72px;
}

.hero__copy {
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--wine-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
}

.eyebrow--wine {
  color: var(--wine);
}

.hero h1,
.section-heading h2,
.standard__copy h2,
.visit-copy h2 {
  margin: 0;
  font-family: "Noto Serif KR", "Iropke Batang", "Batang", serif;
  font-weight: 500;
  letter-spacing: -.065em;
}

.hero h1 {
  max-width: 780px;
  color: #352b2e;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.26;
}

.hero h1 em {
  color: var(--wine);
  font-style: normal;
  font-weight: 700;
}

.hero__description {
  max-width: 610px;
  margin: 30px 0 0;
  color: #685f62;
  font-size: 19px;
  line-height: 1.85;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 37px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

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

.button--primary {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 12px 30px rgba(100, 40, 59, .2);
}

.button--primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 18px 38px rgba(100, 40, 59, .27);
}

.button--secondary {
  border-color: #cdbdb8;
  color: #453b3e;
  background: rgba(255, 255, 255, .62);
}

.button--secondary:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: #fff;
}

.button--kakao {
  border-color: #fee500;
  color: #191919;
  background: #fee500;
}

.button--kakao:hover {
  border-color: #f4da00;
  background: #f4da00;
}
.hero__visit {
  padding: 28px;
  border: 1px solid rgba(100, 40, 59, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .69);
  box-shadow: 0 18px 60px rgba(73, 42, 51, .1);
  backdrop-filter: blur(14px);
}

.hero__visit > span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero__visit > strong {
  display: block;
  margin-top: 12px;
  color: #342a2d;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 23px;
}

.hero__visit p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.hero__visit a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  font-size: 14px;
  font-weight: 750;
}

.quick-menu {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -34px;
  overflow: hidden;
  border: 1px solid rgba(100, 40, 59, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-menu a,
.quick-menu button {
  position: relative;
  display: flex;
  min-height: 138px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: background .22s ease;
}

.quick-menu > :last-child {
  border-right: 0;
}

.quick-menu a:hover,
.quick-menu button:hover {
  background: var(--cream);
}

.quick-menu span {
  position: absolute;
  top: 17px;
  right: 19px;
  color: #baaeb1;
  font-size: 11px;
  letter-spacing: .12em;
}

.quick-menu strong {
  color: #342d30;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 19px;
}

.quick-menu small {
  margin-top: 4px;
  color: #8a8083;
  font-size: 13px;
}

.event-banner {
  margin-top: 58px;
}

.event-banner__button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 258px;
  padding: 44px 310px 44px 52px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 229, 219, .28), transparent 33%),
    linear-gradient(115deg, #35131f 0%, #64283b 58%, #8f5b69 100%);
  box-shadow: 0 28px 70px rgba(76, 31, 46, .22);
  cursor: pointer;
  isolation: isolate;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.event-banner__button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, .06), transparent 47%);
}

.event-banner__button:hover {
  box-shadow: 0 34px 85px rgba(76, 31, 46, .29);
  transform: translateY(-3px);
}

.event-banner__glow {
  position: absolute;
  right: 115px;
  bottom: -170px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
}

.event-banner__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
}

.event-banner__eyebrow {
  color: #e8cbd3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.event-banner__copy > strong {
  margin-top: 10px;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 650;
  line-height: 1.34;
  letter-spacing: -.055em;
}

.event-banner__description {
  margin-top: 13px;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.event-banner__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 750;
}

.event-banner__preview {
  position: absolute;
  top: 9px;
  right: 56px;
  width: 170px;
  height: 240px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, .94);
  border-radius: 17px;
  background: #edf5fb;
  box-shadow: 0 22px 45px rgba(28, 13, 18, .3);
  transform: none;
  transition: transform .3s ease;
}

.event-banner__button:hover .event-banner__preview {
  transform: scale(1.02);
}

.event-banner__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.section {
  padding: 122px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(35px, 4vw, 51px);
  line-height: 1.34;
}

.section-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--compact {
  justify-content: flex-start;
}

.treatments {
  background: var(--white);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.treatment-card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  overflow: hidden;
  border-radius: 20px;
  transition: box-shadow .24s ease, transform .24s ease;
}

.treatment-card::before {
  position: absolute;
  top: -75px;
  right: -60px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  content: "";
}

.treatment-card::after {
  position: absolute;
  top: 4px;
  right: 22px;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(100, 40, 59, .1);
  border-radius: 50%;
  content: "";
}

.treatment-card:hover {
  z-index: 2;
  box-shadow: 0 20px 48px rgba(71, 43, 52, .14);
  transform: translateY(-7px);
}

.treatment-card--rose { background: #f5e7e7; }
.treatment-card--cream { background: #f7f1e7; }
.treatment-card--sand { background: #e8ddd0; }
.treatment-card--gray { background: #ecebea; }
.treatment-card--mauve { background: #e9dfe3; }
.treatment-card--sage { background: #e4e8df; }

.treatment-card__number {
  position: absolute;
  top: 25px;
  left: 29px;
  color: rgba(63, 48, 53, .42);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.treatment-card p {
  position: relative;
  margin: 0 0 7px;
  color: #75676c;
  font-size: 13px;
  font-weight: 650;
}

.treatment-card h3 {
  position: relative;
  margin: 0;
  color: #392e32;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 28px;
  letter-spacing: -.045em;
}

.treatment-card small {
  position: relative;
  min-height: 43px;
  margin-top: 10px;
  color: #776d70;
  font-size: 13px;
  line-height: 1.6;
}

.treatment-card > b {
  position: absolute;
  right: 28px;
  bottom: 27px;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(57, 46, 50, .24);
  border-radius: 50%;
  font-weight: 400;
}

.standard {
  padding: 120px 0;
  background: var(--ivory);
}

.standard__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.standard__art {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 26px;
  background: url("../image/main/theart-hero-2026.jpg") 76% center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(72, 47, 53, .11);
}

.standard__art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(61, 24, 37, .18));
}

.standard__badge {
  position: absolute;
  right: 27px;
  bottom: 27px;
  z-index: 1;
  width: 190px;
  padding: 23px;
  border-radius: 18px;
  color: #fff;
  background: rgba(61, 24, 37, .78);
  backdrop-filter: blur(12px);
}

.standard__badge span {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
}

.standard__badge strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.08;
}

.standard__copy h2 {
  color: var(--ink);
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.36;
}

.standard__copy > p:not(.eyebrow) {
  margin: 27px 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.standard__copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.standard__copy li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.standard__copy li:last-child {
  border-bottom: 1px solid var(--line);
}

.standard__copy li > span {
  color: var(--wine-soft);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
}

.standard__copy li strong,
.standard__copy li small {
  display: block;
}

.standard__copy li strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.standard__copy li small {
  color: #807679;
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--wine);
  color: var(--wine);
  font-size: 14px;
  font-weight: 750;
}

.community {
  background: #fff;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.community-grid a {
  position: relative;
  min-height: 255px;
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.community-grid a:hover {
  border-color: rgba(100, 40, 59, .24);
  box-shadow: 0 18px 48px rgba(73, 46, 54, .1);
  transform: translateY(-5px);
}

.community-grid span {
  color: var(--wine-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.community-grid h3 {
  margin: 17px 0 12px;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.045em;
}

.community-grid p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.community-grid b {
  position: absolute;
  bottom: 31px;
  left: 35px;
  color: var(--wine);
  font-size: 13px;
}

.visit-section {
  padding: 112px 0;
  color: #fff;
  background: var(--wine-deep);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
  gap: 100px;
}

.visit-copy .eyebrow {
  color: #d5aab6;
}

.visit-copy h2 {
  color: #fff;
  font-size: clamp(39px, 4.4vw, 58px);
  line-height: 1.32;
}

.visit-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 33px;
}

.button--light {
  color: var(--wine-deep);
  background: #fff;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.button--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

.hours-card {
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
}

.hours-card__title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 23px;
}

.hours-card__title span {
  color: #d5aab6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hours-card__title strong {
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 24px;
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.hours-card dt {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
}

.hours-card dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.hours-card__lunch {
  margin-top: 5px;
  color: #efcad3;
}

.hours-card > p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.site-footer {
  padding: 67px 0 23px;
  color: #6f6669;
  background: #f4efeb;
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.5fr .5fr;
  gap: 70px;
  padding-bottom: 46px;
}

.brand--footer strong {
  font-size: 28px;
}

.footer-brand > p {
  margin: 20px 0 0;
  color: #7a6f72;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 15px;
}

.footer-grid > div:nth-child(2) > strong {
  color: #3b3336;
  font-size: 14px;
}

.footer-grid > div:nth-child(2) > p {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.9;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-grid nav a {
  font-size: 13px;
}

.footer-grid nav a:hover {
  color: var(--wine);
}

.copyright {
  padding-top: 22px;
  border-top: 1px solid #ddd4cf;
  color: #9a9093;
  font-size: 11px;
  letter-spacing: .1em;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 22, 27, .66);
  backdrop-filter: blur(5px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: calc(100vh - 48px);
  padding: 45px;
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 100px rgba(24, 12, 17, .32);
}

.modal__panel h2 {
  margin: 0 0 27px;
  font-family: "Noto Serif KR", "Batang", serif;
  font-size: 34px;
  letter-spacing: -.05em;
}

.modal__close {
  position: absolute;
  top: 15px;
  right: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  color: #74686c;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.modal__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal__panel li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.modal__panel li span {
  color: #74696c;
}

.modal__panel li strong {
  color: #3d3437;
  text-align: right;
}

.modal__notice {
  margin: 20px 0;
  color: #8a7f82;
  font-size: 12px;
}

.modal__panel--event {
  display: grid;
  width: min(920px, 100%);
  height: min(820px, calc(100vh - 48px));
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "poster header"
    "poster footer";
  padding: 0;
  overflow: hidden;
  background: #eef5fa;
}

.modal__panel--event .modal__close {
  z-index: 5;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(100, 40, 59, .1);
  border-radius: 50%;
  color: var(--wine);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(55, 32, 39, .12);
}

.event-modal__header {
  grid-area: header;
  padding: 68px 34px 20px;
  background: #fff;
}

.event-modal__header .eyebrow {
  margin: 0;
}

.modal__panel--event .event-modal__header h2 {
  margin: 5px 0 0;
  font-size: 34px;
  line-height: 1.35;
}

.event-poster {
  grid-area: poster;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  background: #eef5fa;
}

.event-modal__footer {
  display: flex;
  grid-area: footer;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 28px 32px;
  background: #fff;
}

.event-modal__footer .modal__notice {
  margin: 0 0 13px;
  text-align: left;
}

.event-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.event-modal__actions .button {
  width: 100%;
  min-height: 50px;
}

.button--full {
  width: 100%;
}
.event-modal__actions .button--full {
  grid-column: 1 / -1;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1320px) and (min-width: 1181px) {
  .nav-wrap {
    gap: 16px;
  }

  .main-nav {
    gap: 5px;
  }

  .nav-item__top > a {
    font-size: 15px;
  }

  .submenu-toggle {
    width: 19px;
    margin-left: 0;
  }

  .nav-call {
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 20px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 35px;
  }

  .visit-grid {
    gap: 55px;
  }
}

@media (max-width: 1180px) {
  .nav-wrap {
    min-height: 74px;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-call {
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 28px 46px;
    overflow-y: auto;
    background: #fff;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item__top {
    min-height: 60px;
    border-bottom: 1px solid var(--line);
  }

  .nav-item__top > a {
    flex: 1;
    padding: 17px 4px;
    border: 0;
    font-size: 17px;
  }

  .nav-item__top > a::after {
    display: none;
  }

  .submenu-toggle {
    width: 52px;
    height: 58px;
    margin-left: 0;
    border-radius: 12px;
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus {
    background: #f8f1f3;
    outline: none;
  }

  .submenu-toggle span {
    top: 22px;
    left: 20px;
    width: 9px;
    height: 9px;
  }

  .nav-item.is-open .submenu-toggle span,
  .submenu-toggle[aria-expanded="true"] span {
    top: 27px;
  }

  .submenu,
  .submenu--wide,
  .submenu--mega,
  .submenu--right {
    position: static;
    display: grid;
    width: 100%;
    min-width: 0;
    max-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 10px;
    margin: 0;
    padding: 0 12px;
    overflow: hidden;
    border: 0;
    border-radius: 0 0 14px 14px;
    background: #fbf8f6;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .28s ease, padding .28s ease, opacity .2s ease, visibility .2s ease;
  }

  .nav-item:hover > .submenu,
  .nav-item.is-open > .submenu,
  .nav-item:hover > .submenu--right,
  .nav-item.is-open > .submenu--right {
    max-height: 1000px;
    margin-bottom: 8px;
    padding: 10px 12px 14px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 12px 13px;
    font-size: 15px;
    white-space: normal;
  }

  .hero,
  .hero__inner {
    min-height: 670px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero__copy {
    align-self: end;
  }

  .hero__visit {
    display: none;
  }

  .quick-menu {
    grid-template-columns: repeat(5, minmax(155px, 1fr));
    overflow-x: auto;
  }

  .section {
    padding: 92px 0;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .standard__art {
    min-height: 530px;
  }

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

  .hours-card {
    max-width: 600px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1.7fr;
  }

  .footer-grid nav {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
    font-size: 16px;
    word-break: normal;
  }

  .shell {
    width: min(100% - 32px, 1200px);
  }

  .topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
    padding: 12px 18px 40px;
  }

  .submenu,
  .submenu--wide,
  .submenu--mega,
  .submenu--right {
    grid-template-columns: 1fr;
  }

  .nav-item__top > a {
    font-size: 17px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand span {
    margin-top: 6px;
    font-size: 8px;
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: 670px;
  }

  .hero__media {
    background-position: 67% center;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(252, 248, 243, .98) 0%, rgba(252, 248, 243, .88) 55%, rgba(252, 248, 243, .36) 100%);
  }

  .hero__inner {
    min-height: 670px;
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 52px);
    line-height: 1.3;
  }

  .hero__description {
    max-width: 92%;
    margin-top: 22px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .button {
    min-height: 48px;
    padding: 0 19px;
  }

  .quick-menu {
    width: calc(100% - 24px);
    grid-template-columns: repeat(5, 154px);
    margin-top: -29px;
    border-radius: 18px;
  }

  .quick-menu a,
  .quick-menu button {
    min-height: 122px;
    padding: 20px;
  }

  .event-banner {
    width: min(100% - 32px, 1200px);
    margin-top: 36px;
  }

  .event-banner__button {
    min-height: 310px;
    padding: 34px clamp(130px, 35vw, 220px) 34px 27px;
    border-radius: 22px;
  }

  .event-banner__glow {
    right: -80px;
    bottom: -165px;
    width: 340px;
    height: 340px;
  }

  .event-banner__copy {
    max-width: 300px;
  }

  .event-banner__eyebrow {
    font-size: 10px;
    line-height: 1.5;
  }

  .event-banner__copy > strong {
    margin-top: 12px;
    font-size: clamp(27px, 7vw, 34px);
    line-height: 1.38;
  }

  .event-banner__description {
    display: none;
  }

  .event-banner__cta {
    margin-top: 21px;
    padding: 0 13px;
    font-size: 13px;
  }

  .event-banner__preview {
    top: 70px;
    right: 16px;
    width: 120px;
    height: 170px;
    opacity: .85;
  }

  .section,
  .standard {
    padding: 75px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 35px;
  }

  .section-heading > p {
    margin-top: 18px;
  }

  .treatment-grid {
    gap: 9px;
  }

  .treatment-card {
    min-height: 225px;
    padding: 23px 18px;
    border-radius: 16px;
  }

  .treatment-card h3 {
    font-size: 22px;
  }

  .treatment-card small {
    max-width: 88%;
    font-size: 11px;
  }

  .treatment-card > b {
    right: 16px;
    bottom: 17px;
    width: 29px;
    height: 29px;
  }

  .standard__grid {
    gap: 50px;
  }

  .standard__art {
    min-height: 430px;
    border-radius: 20px;
  }

  .standard__badge {
    right: 17px;
    bottom: 17px;
  }

  .standard__copy h2 {
    font-size: 35px;
  }

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

  .community-grid a {
    min-height: 215px;
  }

  .visit-section {
    padding: 76px 0;
  }

  .visit-copy h2 {
    font-size: 40px;
  }

  .hours-card {
    padding: 30px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid nav {
    grid-column: auto;
  }


  .modal__panel--event {
    padding: 0;
    border-radius: 20px;
  }

  .event-modal__header {
    padding: 23px 67px 16px 22px;
  }

  .modal__panel--event .event-modal__header h2 {
    font-size: 25px;
  }

  .event-modal__footer {
    padding: 14px 16px 18px;
  }

  .event-modal__actions {
    gap: 8px;
  }

  .event-modal__actions .button {
    min-height: 47px;
  }
  .modal__panel {
    padding: 38px 24px 27px;
    border-radius: 20px;
  }


  .modal {
    padding: 8px;
  }

  .modal__panel.modal__panel--event {
    display: block;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 16px);
    padding: 0;
    overflow-y: auto;
    border-radius: 18px;
  }

  .modal__panel--event .event-poster {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .modal__panel--event .event-modal__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal__panel--event .modal__notice {
    text-align: center;
  }
  .modal__panel li {
    display: block;
  }

  .modal__panel li strong {
    display: block;
    margin-top: 3px;
    text-align: left;
  }

  .mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 500;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 68px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 35px rgba(58, 35, 42, .11);
    backdrop-filter: blur(14px);
  }

  .mobile-bar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .mobile-bar span {
    color: var(--wine);
    font-size: 18px;
    line-height: 1;
  }

  .mobile-bar strong {
    font-size: 12px;
  }

  .mobile-bar__call {
    color: #fff;
    background: var(--wine);
  }

  .mobile-bar__call span {
    color: #fff;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 37px;
  }

  .treatment-card {
    min-height: 215px;
    padding: 20px 14px;
  }

  .treatment-card p {
    font-size: 11px;
  }

  .treatment-card h3 {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
