@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Outfit:wght@200;300;400;500;600&display=swap');

:root {
  --ivory: #FAF5F9;
  --ivory-2: #F2E9F0;
  --blush: #F1DFEA;
  --rosegold: #6E3D5F;
  --rosegold-deep: #57304B;
  --rosegold-soft: #8A5277;
  --champagne: #8F6338;
  --ink: #352230;
  --ink-soft: #6E5A68;
  --white: #FFFFFF;
  --line: rgba(110, 61, 95, 0.28);

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Outfit', 'Segoe UI', sans-serif;

  --r: 14px;
  --shadow1: 0 16px 44px rgba(96, 64, 88, 0.13);
  --shadow2: 0 24px 60px rgba(96, 64, 88, 0.2);

  --z-nav: 50;
  --z-drop: 60;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  background:
    radial-gradient(1100px 500px at 88% -5%, rgba(138, 82, 119, 0.10), transparent 60%),
    radial-gradient(900px 600px at -10% 35%, rgba(143, 99, 56, 0.08), transparent 55%),
    var(--ivory);
}

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

::selection { background: var(--rosegold); color: var(--white); }

a { color: var(--rosegold); text-decoration: none; transition: color 200ms ease; }
a:hover { color: var(--rosegold-deep); }

:focus-visible { outline: 2px solid var(--rosegold); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--rosegold);
}

.shell { width: min(1140px, 92%); margin-inline: auto; }

.eyebrow1 {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.lede1 {
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 60ch;
}

.hairstroke {
  display: block;
  width: 88px;
  height: 18px;
  margin: 1.3rem auto 0;
  color: var(--rosegold);
}

.nav1 {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(250, 245, 249, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav1-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand1 {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand1 img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
  flex: none;
  box-shadow: 0 0 0 1px var(--line);
}

.brand1 .b-name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.1;
  display: block;
}

.brand1 .b-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 0.2rem;
}

.nav1-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.nav1-links > li { position: relative; }

.nav1-links a {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.6rem 0;
  display: inline-block;
}

.nav1-links a:hover { color: var(--rosegold); }

.nav1-links a[aria-current="page"] {
  color: var(--rosegold);
  border-bottom: 1px solid var(--rosegold);
}

.has-drop1 > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 0.5rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.drop1 {
  list-style: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow2);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  z-index: var(--z-drop);
}

.has-drop1:hover .drop1,
.has-drop1:focus-within .drop1,
.has-drop1.open .drop1 {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.drop1 a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--ink-soft);
}

.drop1 a:hover { background: var(--blush); color: var(--ink); }

.nav1-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
}

.nav1-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ink);
  margin: 6px 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav1-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav1-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav1-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.btn1 {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.05rem 2.6rem;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--rosegold);
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.btn1--gold {
  background: linear-gradient(135deg, var(--rosegold-soft), var(--rosegold));
  color: var(--white);
  border-color: transparent;
}

.btn1--gold:hover {
  background: var(--rosegold-deep);
  color: var(--white);
  box-shadow: var(--shadow1);
}

.btn1--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(53, 34, 48, 0.4);
}

.btn1--ghost:hover {
  border-color: var(--rosegold);
  color: var(--rosegold);
}

.hero1 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero1-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero1::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 245, 249, 0.96) 0%, rgba(250, 245, 249, 0.82) 40%, rgba(250, 245, 249, 0.08) 100%),
    linear-gradient(0deg, var(--ivory) 0%, transparent 26%);
}

.hero1-content {
  position: relative;
  z-index: 1;
  padding-block: 7rem;
  max-width: 640px;
}

.hero1-content .lede1 { margin: 1.6rem 0 2.6rem; }

.hero1-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.page-head1 {
  padding: 5.5rem 0 3.5rem;
  text-align: center;
}

.page-head1 .lede1 { margin-inline: auto; margin-top: 1.2rem; }

.sec1 { padding-block: 5.5rem; }

.sec1--raise {
  background: linear-gradient(180deg, var(--blush), rgba(242, 226, 220, 0.25));
  border-block: 1px solid rgba(110, 61, 95, 0.14);
}

.sec-head1 { text-align: center; max-width: 46rem; margin: 0 auto 3.2rem; }
.sec-head1 .lede1 { margin-inline: auto; }

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.glass1 {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--rosegold);
  border-radius: var(--r);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow1);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.glass1:hover { border-color: rgba(110, 61, 95, 0.5); box-shadow: var(--shadow2); }

.glass1 h3 { margin-bottom: 0.7rem; }

.glass1 p { font-size: 0.97rem; }

.svc-cat1 { margin-bottom: 4.5rem; }
.svc-cat1:last-child { margin-bottom: 0; }

.svc-cat-head1 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.svc-cat-head1 h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.svc-cat-head1::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--rosegold), transparent);
  margin-left: 0.4rem;
}

.svc-tagline1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.12rem;
  color: var(--rosegold);
  margin-bottom: 2.2rem;
  max-width: 64ch;
}

.menu-row1 {
  padding: 1.9rem 0;
  border-bottom: 1px solid rgba(110, 61, 95, 0.16);
}

.menu-line1 {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.menu-line1 h3 { font-size: 1.35rem; white-space: nowrap; }

.menu-line1 .leader {
  flex: 1;
  border-bottom: 1px dotted rgba(110, 61, 95, 0.4);
  transform: translateY(-6px);
}

.menu-line1 .price1 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  color: var(--champagne);
  white-space: nowrap;
}

.menu-row1 p { margin-top: 0.55rem; font-size: 0.98rem; max-width: 70ch; }

.team1 {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3.6rem;
  align-items: start;
  margin-bottom: 5.5rem;
}

.team1:last-of-type { margin-bottom: 0; }

.team1.flip { grid-template-columns: 1fr 360px; }
.team1.flip .frame1 { order: 2; }

.frame1 {
  position: relative;
  position: sticky;
  top: 110px;
}

.frame1 img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow1);
}

.frame1::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--rosegold);
  border-radius: 2px;
  transform: translate(14px, 14px);
  pointer-events: none;
}

.team1 .title1 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0.6rem 0 1.6rem;
}

.team1 p { margin-bottom: 1.1rem; }

.korean1 {
  font-weight: 300;
  color: var(--ink);
  background: var(--blush);
  border-left: 2px solid var(--rosegold);
  padding: 1rem 1.4rem;
  border-radius: 0 6px 6px 0;
}

.split1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
  align-items: start;
}

.split1 h3 { margin-bottom: 1rem; }
.split1 p { margin-bottom: 1.1rem; }

.req1 { list-style: none; margin: 1.4rem 0 2rem; }

.req1 li {
  position: relative;
  padding: 0.95rem 0 0.95rem 2.4rem;
  border-bottom: 1px solid rgba(110, 61, 95, 0.16);
}

.req1 li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.55rem;
  width: 16px;
  height: 1px;
  background: var(--rosegold);
  transform: rotate(-14deg);
}

.quote1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 1px solid var(--rosegold);
  padding: 0.4rem 0 0.4rem 1.8rem;
  margin: 2.4rem 0;
}

.quote1 cite {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 1rem;
}

.notice1 {
  background: rgba(242, 226, 220, 0.55);
  border: 1px solid rgba(110, 61, 95, 0.3);
  border-radius: var(--r);
  padding: 1.3rem 1.6rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 1.4rem 0;
}

.auto-slider {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, black 9%, black 91%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 9%, black 91%, transparent 100%);
}

.auto-slider-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  animation: slide1 30s linear infinite;
}

.auto-slider:hover .auto-slider-track { animation-play-state: paused; }

.auto-slider-item {
  flex: none;
  width: 400px;
  aspect-ratio: 8 / 5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow1);
  transition: transform 300ms ease, filter 300ms ease;
}

.auto-slider-item:hover { transform: scale(1.04); filter: brightness(1.05); }

.auto-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slide1 { to { transform: translateX(-50%); } }

.slider-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border: 1px solid rgba(110, 61, 95, 0.3);
  backdrop-filter: blur(4px);
}

.slider-tag--after {
  background: linear-gradient(135deg, var(--rosegold-soft), var(--rosegold));
  color: var(--white);
  border-color: transparent;
}

.collection1 {
  display: block;
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow1);
  cursor: pointer;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.collection1:hover { border-color: rgba(110, 61, 95, 0.55); box-shadow: var(--shadow2); }

.collection1 img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 450ms ease;
}

.collection1:hover img { transform: scale(1.05); }

.collection1 .c-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.6rem 1.6rem 1.5rem;
  background: linear-gradient(0deg, rgba(250, 245, 249, 0.96) 30%, transparent 100%);
}

.collection1 h3 { margin-bottom: 0.2rem; }

.collection1 .c-body p { font-size: 0.9rem; margin-bottom: 0.7rem; }

.c-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rosegold);
  border-bottom: 1px solid var(--rosegold);
  padding-bottom: 0.25rem;
}

.contact1 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.6rem;
  align-items: start;
}

.form1 {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-top: 2px solid var(--rosegold);
  border-radius: var(--r);
  box-shadow: var(--shadow1);
  padding: 2.6rem;
}

.field1 { margin-bottom: 1.5rem; }

.field1 label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.field1 input,
.field1 textarea {
  width: 100%;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(110, 61, 95, 0.3);
  border-radius: 4px;
  padding: 0.95rem 1.1rem;
  transition: border-color 200ms ease;
}

.field1 input:focus,
.field1 textarea:focus {
  outline: none;
  border-color: var(--rosegold);
}

.details1 h3 { margin-bottom: 1rem; }

.details1 address {
  font-style: normal;
  margin-bottom: 2.4rem;
}

.details1 .phone1 {
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--ink);
  display: inline-block;
  margin-top: 0.5rem;
}

.details1 .phone1:hover { color: var(--rosegold); }

.hours1 { width: 100%; border-collapse: collapse; }

.hours1 td {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(110, 61, 95, 0.16);
}

.hours1 td:last-child { text-align: right; color: var(--ink); }

.cta1 {
  text-align: center;
  padding-block: 6rem;
  background:
    radial-gradient(640px 320px at 50% 115%, rgba(138, 82, 119, 0.16), transparent 70%);
  border-top: 1px solid rgba(110, 61, 95, 0.14);
}

.cta1 h2 { margin-bottom: 1rem; }
.cta1 p { max-width: 52ch; margin: 0 auto 2.4rem; }

.footer1 {
  background: var(--ivory-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  font-size: 0.92rem;
}

.footer1-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.6rem;
  margin-bottom: 2.6rem;
}

.footer1 h4 {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.1rem;
}

.footer1 ul { list-style: none; }
.footer1 li { margin-bottom: 0.55rem; }
.footer1 a { color: var(--ink-soft); }
.footer1 a:hover { color: var(--rosegold); }

.seals1 { display: flex; gap: 1rem; margin-top: 1.3rem; }

.seals1 img {
  height: 64px;
  width: auto;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--line);
}

.footer1-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(110, 90, 104, 0.7);
  border-top: 1px solid rgba(110, 61, 95, 0.16);
  padding-top: 1.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .grid3, .contact1, .split1 { grid-template-columns: 1fr; }

  .team1, .team1.flip { grid-template-columns: 1fr; }
  .team1.flip .frame1 { order: 0; }
  .frame1 { position: static; max-width: 440px; }

  .hero1 { min-height: 72vh; }
}

@media (max-width: 780px) {
  .nav1-toggle { display: block; }

  .nav1-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 245, 249, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 0 1.2rem;
    display: none;
  }

  .nav1-links.open { display: flex; }
  .nav1-links > li { text-align: center; }
  .nav1-links a { display: block; padding: 0.9rem 1rem; }

  .drop1 {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--blush);
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .has-drop1.open .drop1 { display: block; transform: none; }

  .sec1 { padding-block: 3.6rem; }

  .auto-slider-item { width: 250px; }

  .hero1-content { padding-block: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .auto-slider-track { animation: none !important; }

  .reveal { opacity: 1; transform: none; transition: none; }

  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
