@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Lora:ital,wght@0,400..700;1,400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  --brand: #191919;
  --dark-brown: #725a58;
  --accent: #e3b6b1;
  --light-pink: #fae9e7;
  --snow-white: #f8f6f4;
  --paper-white: #fbfafa;
  --mid-grey: #888888;
  --dark-grey: #535353;
  --black: #191919;
  --dark-pink: #b99692;
  --brown: #a06d67;
}

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

html {
  font-size: 1rem;
  scroll-behavior: smooth;
}

body {
  font-family: "Lora", "Georgia", serif;
  color: var(--color-brand);
  background-color: var(--snow-white);
}

ul,
ol {
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1rem 1.5rem;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .header {
    padding: 1rem 2.5rem;
  }
}
@media (min-width: 1280px) {
  .header {
    padding: 2rem 2.5rem;
  }
}
.header.is-scrolled {
  animation: headerSlide 0.6s ease;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1.5rem;
}
@media (min-width: 1280px) {
  .header.is-scrolled {
    padding: 1.5rem 2.5rem;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 1280px) {
  .header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header__logo {
  height: 80px;
  width: auto;
  margin: 0;
  transition: height 0.3s ease;
}
@media (min-width: 1280px) {
  .header__logo {
    height: 120px;
    margin: 0 5rem;
  }
}
.is-scrolled .header__logo {
  height: 60px;
}
@media (min-width: 1280px) {
  .is-scrolled .header__logo {
    height: 40px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1280px) {
  .header__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .header__nav.is-open {
    display: block;
    position: fixed;
    z-index: 99;
    top: 4rem;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 1.5rem 1rem 2rem;
    background-color: #fbfafa;
    border-top: 1px solid rgba(25, 25, 25, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  }
  .header__nav.is-open .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.header__nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Baskervville", "Georgia", serif;
}
@media (min-width: 1280px) {
  .header__nav-link {
    position: relative;
  }
  .header__nav-link::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark-brown);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .header__nav-link:hover::before {
    transform: scaleX(1);
  }
  .header__nav-link--external img {
    width: 24px;
    height: auto;
  }
  .header__nav-link--external::before {
    content: none;
  }
  .header__nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background-color: var(--accent);
  }
}
.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 100;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .header__toggle {
    display: none;
  }
}
.header__toggle.is-active .header__toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle.is-active .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-active .header__toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-brown);
  transition: all 0.3s ease;
}
.header__btn {
  display: block;
}
.header__btn img {
  width: 28px;
  height: auto;
}
@media (min-width: 1280px) {
  .header__btn {
    display: none;
  }
}
.header__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--snow-white);
  z-index: 99;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1280px) {
  .header__sidebar {
    display: none;
  }
}
.header__sidebar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.header__sidebar-link {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header__sidebar-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dark-brown);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.header__sidebar-link:hover::before {
  transform: scaleX(1);
}
.header__sidebar.is-open {
  transform: translateX(0);
}
.header__sidebar.is-open .header__sidebar-link {
  opacity: 1;
  transform: translateX(0);
}
.header__sidebar.is-open .header__sidebar-link:nth-child(1) {
  transition-delay: 0.18s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(2) {
  transition-delay: 0.26s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(3) {
  transition-delay: 0.34s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(4) {
  transition-delay: 0.42s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(5) {
  transition-delay: 0.5s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(6) {
  transition-delay: 0.58s;
}
.header__sidebar.is-open .header__sidebar-link:nth-child(7) {
  transition-delay: 0.66s;
}

@keyframes headerSlide {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-100%);
    opacity: 0;
  }
  51% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer {
  width: calc(100% - 1rem * 2);
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 2rem;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer__logo {
  height: 132px;
  width: auto;
}
.footer__sentence {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--brand);
  font-family: "Nunito", "Arial", sans-serif;
  letter-spacing: 0.02em;
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.footer__nav {
  width: 100%;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  padding: 1.5rem 0;
  border-top: 0.5px solid var(--brand);
  border-bottom: 0.5px solid var(--brand);
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .footer__nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .footer__nav {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 992px) {
  .footer__nav {
    grid-template-columns: repeat(7, 1fr);
  }
}
.footer__nav-link {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Baskervville", "Georgia", serif;
  position: relative;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}
.footer__nav-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dark-brown);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.footer__nav-link:hover::before {
  transform: scaleX(1);
}
.footer__copy {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--dark-brown);
  font-family: "Nunito", "Arial", sans-serif;
  letter-spacing: 0.02em;
}

.home {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .home {
    padding-top: 184px;
  }
}
.home .home-hero {
  position: relative;
  height: calc(100dvh - 112px);
  width: 100%;
  background: url("/images/top-fv.png") top center/cover no-repeat;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .home .home-hero {
    height: calc(100dvh - 184px);
  }
}
.home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 10;
  animation: overlay-fadeout 1.5s ease-out 1s forwards;
}
.home .home-hero__body {
  position: absolute;
  top: 40%;
  left: 50%;
  width: calc(100% - 2rem);
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .home-hero__signature {
  max-width: 90%;
  width: 600px;
  height: auto;
  margin-bottom: 2rem;
}
.home .home-hero__description {
  font-size: 1rem;
  font-weight: 300;
  color: #fff;
  font-family: "Nunito", "Arial", sans-serif;
  opacity: 0;
  animation: content-fadein 0.75s ease-out 1.25s forwards;
  text-align: center;
  max-width: 85%;
  width: 600px;
  margin-bottom: 2rem;
}
.home .home-hero__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: #fff;
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid #fff;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  animation: content-fadein 0.8s ease-out 1.5s forwards;
  transition: background-color 0.3s, color 0.3s;
}
.home .home-hero__btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--brand);
}
@media (min-width: 768px) {
  .home .home-hero__btn {
    padding: 1.5rem 2rem;
  }
}
.home .home-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 1rem 2.5rem;
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home .home-about {
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding: 5rem 2.5rem 3rem;
  }
}
.home .home-about__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .home .home-about__body {
    align-items: flex-start;
    text-align: left;
  }
}
.home .home-about__logo {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  margin-bottom: 0.25rem;
  background: url("/images/logo-black.svg") center/contain no-repeat;
}
@media (min-width: 768px) {
  .home .home-about__logo {
    width: 56px;
    background-image: url("/images/logo-pink.svg");
  }
}
.home .home-about__title {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-family: "Baskervville", "Georgia", serif;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.home .home-about__description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-grey);
  font-family: "Nunito", "Arial", sans-serif;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .home .home-about__description {
    margin-bottom: 2.5rem;
  }
}
.home .home-about__cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .home .home-about__cta {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
  }
}
.home .home-about__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid var(--dark-grey);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.home .home-about__btn:hover {
  background-color: var(--accent);
  color: var(--snow-white);
  border-color: var(--accent);
}
@media (min-width: 768px) {
  .home .home-about__btn {
    padding: 1rem 2.5rem;
  }
}
.home .home-about__btn {
  flex-shrink: 0;
}
.home .home-about__signature {
  width: 80%;
  max-width: 320px;
  height: auto;
}
@media (min-width: 768px) {
  .home .home-about__signature {
    transform: rotate(345deg);
  }
}
.home .home-about__image {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home .home-about__image {
    width: 30vw;
    max-width: 300px;
  }
}
.home .home-brands {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
  background-color: var(--background);
}
@media (min-width: 768px) {
  .home .home-brands {
    padding: 0 2.5rem 4rem;
  }
}
.home .home-brands__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--mid-grey);
  font-family: "Nunito", "Arial", sans-serif;
  white-space: nowrap;
}
.home .home-brands__title::before, .home .home-brands__title::after {
  content: "";
  flex: 1;
  max-width: 100%;
  height: 0.5px;
  background-color: var(--mid-grey);
}
.home .home-brands__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
  justify-items: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .home .home-brands__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home .home-brands__item {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 992px) {
  .home .home-brands__item {
    max-width: 140px;
  }
}
.home .home-customer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2.5rem 1rem;
  background-color: var(--light-pink);
}
@media (min-width: 768px) {
  .home .home-customer {
    padding: 6rem 0;
  }
}
.home .home-customer__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 1rem;
}
.home .home-customer__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 0.5px;
  background-color: var(--accent);
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .home .home-customer__title::after {
    width: 200px;
  }
}
.home .home-customer__description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-grey);
  font-family: "Nunito", "Arial", sans-serif;
  text-align: center;
  max-width: 400px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home .home-customer__description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--dark-grey);
    font-family: "Nunito", "Arial", sans-serif;
  }
}
.home .home-customer__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid var(--dark-grey);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.home .home-customer__btn:hover {
  background-color: var(--accent);
  color: var(--snow-white);
  border-color: var(--accent);
}
@media (min-width: 768px) {
  .home .home-customer__btn {
    padding: 1rem 2.5rem;
  }
}
.home .home-customer__btn {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .home .home-customer__btn {
    margin-bottom: 4rem;
  }
}
.home .home-customer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 0 auto 2.5rem;
  list-style: none;
}
@media (min-width: 768px) {
  .home .home-customer__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}
.home .home-customer__item {
  aspect-ratio: 2/3;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home .home-customer__item {
    aspect-ratio: 4/5;
  }
}
.home .home-customer__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .home-customer__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
.home .home-customer__body::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("/images/icon-quote.svg") center/contain no-repeat;
  margin-bottom: 1rem;
}
.home .home-customer__comment {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Lora", "Georgia", serif;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .home .home-customer__comment {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-brown);
    font-family: "Lora", "Georgia", serif;
  }
}
.home .home-customer__switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.home .home-customer__switch-btn img {
  width: 24px;
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.home .home-customer__switch-btn img:hover {
  opacity: 1;
}
.home .home-customer__current {
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Baskervville", "Georgia", serif;
  font-style: italic;
}
.home .home-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .home .home-services {
    padding: 5rem 2.5rem;
  }
}
.home .home-services__title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 1rem;
}
.home .home-services__title::after {
  content: "";
  display: block;
  width: 120px;
  height: 0.5px;
  background-color: var(--accent);
  margin: 1.5rem auto 0.5rem;
}
@media (min-width: 768px) {
  .home .home-services__title::after {
    width: 200px;
  }
}
.home .home-services__description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-grey);
  font-family: "Nunito", "Arial", sans-serif;
  text-align: center;
  max-width: 400px;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home .home-services__description {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--dark-grey);
    font-family: "Nunito", "Arial", sans-serif;
  }
}
.home .home-services__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid var(--dark-grey);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.home .home-services__btn:hover {
  background-color: var(--accent);
  color: var(--snow-white);
  border-color: var(--accent);
}
@media (min-width: 768px) {
  .home .home-services__btn {
    padding: 1rem 2.5rem;
  }
}
.home .home-services__btn {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .home .home-services__btn {
    margin-bottom: 4rem;
  }
}
.home .home-services__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 90%;
  list-style: none;
}
@media (min-width: 768px) {
  .home .home-services__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 992px;
  }
}
.home .home-services__item {
  position: relative;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .home .home-services__item {
    width: 240px;
    aspect-ratio: 1/1;
  }
  .home .home-services__item::after {
    content: "";
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 80%;
    height: 100%;
    border: 1px solid var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
  }
  .home .home-services__item:hover {
    transform: scale(1.15);
    z-index: 1;
  }
  .home .home-services__item:hover::after {
    opacity: 1;
  }
}
.home .home-services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home .home-services__image--sp {
  display: block;
}
@media (min-width: 768px) {
  .home .home-services__image--sp {
    display: none;
  }
}
.home .home-services__image--pc {
  display: none;
}
@media (min-width: 768px) {
  .home .home-services__image--pc {
    display: block;
  }
}
.home .home-makeup {
  width: 100%;
}
.home .home-makeup__inner {
  background-color: var(--light-pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 0;
}
@media (min-width: 576px) {
  .home .home-makeup__inner {
    padding: 2rem 1rem;
  }
}
@media (min-width: 992px) {
  .home .home-makeup__inner {
    padding: 3rem 6rem;
    max-width: 1280px;
  }
}
.home .home-makeup__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 1rem;
}
.home .home-makeup__title span {
  font-size: 1.4em;
  letter-spacing: 0.05em;
}
.home .home-makeup__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}
@media (min-width: 768px) {
  .home .home-makeup__contents {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 5rem;
  }
}
.home .home-makeup__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .home .home-makeup__body {
    align-items: flex-start;
    gap: 2.5rem;
    flex: 1;
  }
}
.home .home-makeup__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
  list-style: none;
}
@media (min-width: 768px) {
  .home .home-makeup__list {
    gap: 2.5rem;
  }
}
.home .home-makeup__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .home .home-makeup__item {
    align-items: flex-start;
    text-align: left;
    padding-right: 3rem;
  }
}
.home .home-makeup__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("/images/icon-notice.svg") center/contain no-repeat;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .home .home-makeup__item::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .home .home-makeup__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("/images/icon-arrow-right.svg") center/contain no-repeat;
    transition: transform 0.3s;
  }
}
@media (min-width: 768px) {
  .home .home-makeup__item:hover::after {
    transform: translateY(-50%) translateX(4px);
  }
}
.home .home-makeup__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid var(--dark-grey);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.home .home-makeup__btn:hover {
  background-color: var(--accent);
  color: var(--snow-white);
  border-color: var(--accent);
}
@media (min-width: 768px) {
  .home .home-makeup__btn {
    padding: 1rem 2.5rem;
  }
}
.home .home-makeup__item-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Baskervville", "Georgia", serif;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .home .home-makeup__item-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.25rem;
  }
  .home .home-makeup__item-title::before {
    content: "";
    width: 28px;
    height: 28px;
    background: url("/images/icon-notice.svg") center/contain no-repeat;
    flex-shrink: 0;
  }
}
.home .home-makeup__item-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-grey);
  font-family: "Nunito", "Arial", sans-serif;
  line-height: 1.6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .home .home-makeup__item-desc {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.home .home-makeup__item-btn {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark-brown);
  font-family: "Lora", "Georgia", serif;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: opacity 0.3s;
}
.home .home-makeup__item-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 0.5rem;
  background: url("/images/icon-arrow-right.svg") center/contain no-repeat;
}
.home .home-makeup__item-btn:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .home .home-makeup__item-btn {
    display: none;
  }
}
.home .home-makeup__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
}
@media (min-width: 768px) {
  .home .home-makeup__image-wrapper {
    width: 30%;
    max-width: 320px;
  }
  .home .home-makeup__image-wrapper::after {
    content: "";
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dark-brown);
    z-index: -1;
  }
}
.home .home-makeup__image {
  width: 100%;
  height: auto;
}
.home .home-tips {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4rem 1rem;
  background-color: var(--snow-white);
}
@media (min-width: 768px) {
  .home .home-tips {
    padding: 5rem 2.5rem;
  }
}
.home .home-tips__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1rem;
}
.home .home-tips__title::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: var(--accent);
  margin: 1rem auto 0;
}
@media (min-width: 768px) {
  .home .home-tips__title::after {
    width: 160px;
  }
}
.home .home-tips__list {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  padding: 2rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  list-style: none;
}
.home .home-tips__list::-webkit-scrollbar {
  display: none;
}
.home .home-tips__list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .home .home-tips__list {
    justify-content: center;
    gap: 2rem;
    max-width: 992px;
    margin: 0 auto;
    overflow-x: visible;
    scroll-snap-type: none;
  }
}
.home .home-tips__item {
  flex: 0 0 85%;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .home .home-tips__item {
    flex: 0 0 auto;
    width: calc((100% - 4rem) / 3);
    max-width: 300px;
  }
}
.home .home-tips__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.home .home-tips__image--sp {
  display: block;
}
@media (min-width: 768px) {
  .home .home-tips__image--sp {
    display: none;
  }
}
.home .home-tips__image--pc {
  display: none;
}
@media (min-width: 768px) {
  .home .home-tips__image--pc {
    display: block;
  }
}
.home .home-tips__btn {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--dark-grey);
  font-family: "Lora", "Georgia", serif;
  padding: 1rem 2rem;
  border: 1px solid var(--dark-grey);
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.home .home-tips__btn:hover {
  background-color: var(--accent);
  color: var(--snow-white);
  border-color: var(--accent);
}
@media (min-width: 768px) {
  .home .home-tips__btn {
    padding: 1rem 2.5rem;
  }
}
.home .home-tips__btn {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .home .home-tips__btn {
    margin-top: 2rem;
  }
}
.home .home-talk {
  width: 100%;
  background-color: var(--light-pink);
  padding: 3rem 1rem 4rem;
}
@media (min-width: 768px) {
  .home .home-talk {
    padding: 4rem 2.5rem 5rem;
  }
}
.home .home-talk__inner {
  max-width: 560px;
  margin: 0 auto;
}
.home .home-talk__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 1rem;
}
.home .home-talk__description {
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark-grey);
  font-family: "Nunito", "Arial", sans-serif;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .home .home-talk__description {
    font-size: 1.125rem;
  }
}
.home .home-talk .home-contact__form {
  max-width: 100%;
  background-color: rgba(250, 233, 231, 0.5);
  border: 1px solid rgba(114, 90, 88, 0.15);
  padding: 1rem;
}
@media (min-width: 768px) {
  .home .home-talk .home-contact__form {
    padding: 2rem;
  }
}
.home .home-talk .home-contact__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(114, 90, 88, 0.4);
  margin-bottom: 1.5rem;
}
.home .home-talk .home-contact__tab {
  border: 0;
  background: transparent;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-family: "Lora", "Georgia", serif;
  color: #888888;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.home .home-talk .home-contact__tab--active {
  color: var(--dark-brown);
  border-bottom-color: var(--dark-brown);
}
.home .home-talk .home-contact__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home .home-talk .home-contact__panel[hidden] {
  display: none;
}
.home .home-talk .home-contact__step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.home .home-talk .home-contact__step[hidden] {
  display: none;
}
.home .home-talk .home-contact__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home .home-talk .home-contact__group-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
  margin-bottom: 0.25rem;
}
.home .home-talk .home-contact__chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
@media (max-width: 575px) {
  .home .home-talk .home-contact__chips {
    grid-template-columns: 1fr;
  }
}
.home .home-talk .home-contact__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid transparent;
  background-color: #fbfafa;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.home .home-talk .home-contact__chip input {
  display: none;
}
.home .home-talk .home-contact__chip:has(input:checked) {
  border-color: #b99692;
}
.home .home-talk .home-contact__chip:has(input:checked) .home-contact__chip-label {
  color: var(--dark-brown);
}
.home .home-talk .home-contact__chip-label {
  flex: 1;
  color: #535353;
}
.home .home-talk .home-contact__chip-check {
  width: 20px;
  height: 20px;
  opacity: 0;
}
.home .home-talk .home-contact__chip input:checked ~ .home-contact__chip-check {
  opacity: 1;
}
.home .home-talk .home-contact__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .home .home-talk .home-contact__row {
    grid-template-columns: 1fr 1fr;
  }
}
.home .home-talk .home-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home .home-talk .home-contact__field > label:not(.home-contact__check) {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  color: var(--dark-brown);
}
.home .home-talk .home-contact__field input,
.home .home-talk .home-contact__field select,
.home .home-talk .home-contact__field textarea {
  background-color: #fbfafa;
  border: 1px solid rgba(114, 90, 88, 0.25);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(114, 90, 88, 0.85);
}
.home .home-talk .home-contact__field input:focus,
.home .home-talk .home-contact__field select:focus,
.home .home-talk .home-contact__field textarea:focus {
  outline: none;
  border-color: rgba(114, 90, 88, 0.55);
}
.home .home-talk .home-contact__field textarea {
  min-height: 110px;
  resize: vertical;
}
.home .home-talk .home-contact__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark-grey);
  margin-top: 0.25rem;
}
.home .home-talk .home-contact__check input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 1.5px solid #b99692;
  background-color: #fbfafa;
  display: grid;
  place-content: center;
  cursor: pointer;
  box-sizing: border-box;
}
.home .home-talk .home-contact__check input[type=checkbox]:checked {
  background-color: #b99692;
  border-color: #b99692;
}
.home .home-talk .home-contact__check input[type=checkbox]:checked::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #fbfafa;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.home .home-talk .home-contact__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2px;
}
.home .home-talk .home-contact__choices--stack {
  flex-direction: column;
  gap: 0.5rem;
}
.home .home-talk .home-contact__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--dark-brown);
}
.home .home-talk .home-contact__choice input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  border-radius: 50%;
  border: 3px solid #fbfafa;
  box-shadow: 0 0 0 1px rgba(185, 150, 146, 0.7);
  background-color: #fbfafa;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.home .home-talk .home-contact__choice input[type=radio]:checked {
  background-color: rgba(185, 150, 146, 0.75);
  border-color: #fbfafa;
}
.home .home-talk .home-contact__phone-row {
  display: grid;
  grid-template-columns: 40px 1fr;
}
.home .home-talk .home-contact__phone-row .home-contact__country-code {
  border: 1px solid rgba(114, 90, 88, 0.25);
  border-right: 0;
  background: #fbfafa;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(114, 90, 88, 0.7);
  font-size: 0.875rem;
}
.home .home-talk .home-contact__phone-row input {
  border-left: 0;
  background-color: #fbfafa;
  border: 1px solid rgba(114, 90, 88, 0.25);
  border-left: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: rgba(114, 90, 88, 0.85);
}
.home .home-talk .home-contact__phone-row input:focus {
  outline: none;
  border-color: rgba(114, 90, 88, 0.55);
}
.home .home-talk .home-contact__submit {
  align-self: center;
  width: 100%;
  max-width: 200px;
  border: 1px solid rgba(114, 90, 88, 0.4);
  background-color: transparent;
  color: rgba(114, 90, 88, 0.8);
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  font-family: "Baskervville", "Georgia", serif;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
  margin-top: 1rem;
}
.home .home-talk .home-contact__submit:hover {
  background-color: rgba(114, 90, 88, 0.08);
  color: #725a58;
}

@keyframes overlay-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
    pointer-events: none;
  }
}
@keyframes content-fadein {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.my-work {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .my-work {
    padding-top: 184px;
  }
}
.my-work {
  padding-bottom: 0;
}
.my-work__hero {
  background-color: #f8f6f4;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .my-work__hero {
    padding: 2.5rem 0 2rem;
  }
}
@media (min-width: 992px) {
  .my-work__hero {
    box-sizing: border-box;
    width: 100%;
    height: 270px;
    min-height: 270px;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .my-work__hero .my-work__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.my-work__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.my-work__title-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .my-work__title-wrap {
    margin-bottom: 0;
  }
}
.my-work__title {
  margin: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #725a58;
}
.my-work__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
.my-work__subtitle {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #191919;
  text-align: center;
  max-width: 36.5625rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.my-work__inner {
  background-color: #fbe7e4;
  padding: clamp(3rem, 8vw, 5rem) 1rem clamp(4rem, 10vw, 9.375rem);
}
@media (max-width: 767px) {
  .my-work__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .my-work__inner {
    padding: 5rem 2rem 9.375rem;
  }
}
.my-work__inner > .my-work__container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .my-work__inner > .my-work__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.my-work__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.375rem);
}
.my-work__tabs {
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  width: min(30.25rem, 100%);
  min-height: 53px;
  border-bottom: 1px solid #888888;
}
.my-work__tab {
  box-sizing: border-box;
  position: relative;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #888888;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 10px;
  margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.my-work__tab.is-active {
  font-weight: 500;
  color: #191919;
  border-bottom-color: #191919;
}
.my-work__tab:hover:not(.is-active) {
  color: rgba(136, 136, 136, 0.85);
}
.my-work__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.my-work__panel:not(.is-active) {
  display: none;
}
.my-work__panel > .my-work__gallery {
  align-self: stretch;
}
.my-work__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  width: 100%;
  max-width: 63.875rem;
  margin: 0 auto 3rem;
  background-color: #fbe7e4;
}
@media (min-width: 992px) {
  .my-work__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
.my-work__item {
  aspect-ratio: 1/1;
  background-color: #f8f6f4;
  overflow: hidden;
  border-radius: 0;
}
.my-work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.my-work__item:hover img {
  transform: scale(1.04);
}
.my-work__view-more {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 10.0625rem;
  max-width: 100%;
  min-width: 160px;
  min-height: 62px;
  padding: 24px 32px;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  color: #725a58;
  background: transparent;
  border: 1px solid #725a58;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.my-work__view-more:hover {
  background-color: rgba(114, 90, 88, 0.04);
}

.services {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .services {
    padding-top: 184px;
  }
}
.services {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .services {
    box-sizing: border-box;
    max-width: 90rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.services__hero {
  background-color: #f8f6f4;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .services__hero {
    padding: 2.5rem 0 2rem;
  }
}
@media (min-width: 992px) {
  .services__hero {
    box-sizing: border-box;
    width: 100%;
    height: 270px;
    min-height: 270px;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .services__hero .services__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.services__shell {
  background-color: #fbe7e4;
  padding-bottom: 6rem;
}
@media (min-width: 768px) {
  .services__shell {
    padding-bottom: 7.5rem;
  }
}
@media (min-width: 992px) {
  .services__shell {
    box-sizing: border-box;
    min-height: 1565px;
  }
}
.services__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.services__container--list {
  padding-top: 4.5rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .services__container--list {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .services__container--list {
    padding-top: 6rem;
  }
}
.services__title-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .services__title-wrap {
    margin-bottom: 0;
  }
}
.services__title {
  margin: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #725a58;
}
.services__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
.services__intro {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #191919;
  text-align: center;
  max-width: 36.5625rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  margin: 0;
  padding: 0;
}
.services__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  overflow: hidden;
}
@media (min-width: 768px) {
  .services__card {
    flex-direction: row;
    align-items: stretch;
  }
}
.services__media {
  width: 100%;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: #fbe7e4;
}
@media (min-width: 768px) {
  .services__media {
    width: 42%;
    max-width: 400px;
    align-self: stretch;
  }
}
.services__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .services__media img {
    min-height: 100%;
  }
}
.services__body {
  flex: 1;
  background-color: #fbe7e4;
  padding: 1.5rem 1rem 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .services__body {
    padding: 2rem 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.services__name {
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #725a58;
  margin: 0 0 1rem;
}
.services__meta {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.services__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.services__meta-text {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.55;
}
.services__meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  opacity: 0.9;
}
.services__meta-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.services__tagline {
  font-family: "Baskervville", "Georgia", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  font-variant-numeric: lining-nums proportional-nums;
  color: #4a4a4a;
  margin: 0 0 1rem;
}
.services__text {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #4a4a4a;
  margin: 0 0 1.5rem;
}
.services__actions {
  text-align: left;
  margin-top: auto;
  padding-top: 0.25rem;
}
.services__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 10.6875rem;
  max-width: 100%;
  min-width: 160px;
  min-height: 62px;
  padding: 24px 32px;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  color: #5e4a49;
  background-color: transparent;
  border: 1px solid #5e4a49;
  border-radius: 0;
  opacity: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.services__btn:hover {
  background-color: rgba(94, 74, 73, 0.04);
}
@media (max-width: 767px) {
  .services__btn {
    box-sizing: border-box;
    width: 322px;
    max-width: 100%;
    min-width: 160px;
    min-height: 54px;
    gap: 10px;
    padding: 20px 32px;
    opacity: 1;
    transform: rotate(0deg);
    background-color: transparent;
    border-width: 0.8px;
    border-style: solid;
    border-color: #5e4a49;
  }
}

.classes {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .classes {
    padding-top: 184px;
  }
}
.classes {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .classes {
    box-sizing: border-box;
    max-width: 90rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    min-height: 2220px;
    transform: translateX(-2px);
  }
}
.classes__hero {
  background-color: #f8f6f4;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .classes__hero {
    padding: 2.5rem 0 2rem;
  }
}
.classes__shell {
  background-color: #fae9e7;
  padding-bottom: 2.5rem;
}
.classes__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.classes__container--list {
  padding-top: 1.5rem;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .classes__container--list {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .classes__container--list {
    padding-top: 2rem;
  }
}
.classes__title-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.classes__title {
  box-sizing: border-box;
  width: 100%;
  max-width: 26.0625rem;
  min-height: 4.875rem;
  margin: 0 auto;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  color: #725a58;
  opacity: 1;
}
.classes__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
.classes__intro {
  box-sizing: border-box;
  width: 100%;
  max-width: 27.3125rem;
  min-height: 3.375rem;
  margin: 0 auto;
  padding: 0 1rem;
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: #191919;
  opacity: 1;
  container-type: inline-size;
  container-name: classes-intro;
  font-size: clamp(11px, 5.2cqi + 0.2rem, 18px);
}
@supports not (font-size: 1cqi) {
  .classes__intro {
    font-size: clamp(11px, 3.2vw + 0.35rem, 18px);
  }
}
@media (min-width: 768px) {
  .classes__intro {
    max-width: 33.4375rem;
  }
}
.classes__intro-stack--mobile {
  display: block;
}
@media (min-width: 768px) {
  .classes__intro-stack--mobile {
    display: none;
  }
}
.classes__intro-stack--desktop {
  display: none;
}
@media (min-width: 768px) {
  .classes__intro-stack--desktop {
    display: block;
  }
}
.classes__intro-line {
  display: block;
}
@media (min-width: 768px) {
  .classes__intro-stack--desktop .classes__intro-line {
    white-space: nowrap;
  }
}
.classes__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .classes__list {
    gap: 9rem;
  }
}
.classes__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  overflow: hidden;
}
@media (min-width: 768px) {
  .classes__card {
    flex-direction: row;
    align-items: stretch;
  }
}
.classes__media {
  width: 100%;
  max-width: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: #fae9e7;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 768px) {
  .classes__media {
    width: 20.5rem;
    max-width: 20.5rem;
    align-self: flex-start;
  }
}
.classes__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 328/500;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 768px) {
  .classes__media img {
    width: 20.5rem;
    height: 31.25rem;
    aspect-ratio: auto;
  }
}
.classes__body {
  flex: 1;
  background-color: #fae9e7;
  padding: 1.5rem 1rem 2rem;
  text-align: left;
}
@media (max-width: 767px) {
  .classes__body {
    padding: 48px 1rem 2rem;
  }
}
@media (min-width: 768px) {
  .classes__body {
    padding: 2rem 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.classes__name {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 1rem;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 36px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: #725a58;
  opacity: 1;
}
.classes__name-num {
  font-family: inherit;
  font-size: 1.05em;
  font-weight: 400;
  font-variant-numeric: lining-nums proportional-nums;
  line-height: inherit;
  display: inline;
  vertical-align: baseline;
}
.classes__meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 0.5rem;
  column-gap: clamp(1rem, 3vw, 2rem);
}
@media (min-width: 768px) {
  .classes__meta {
    flex-wrap: nowrap;
    row-gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
}
.classes__meta li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.classes__meta-text {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #535353;
}
.classes__meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.classes__meta-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.classes__block {
  margin-bottom: 1rem;
}
.classes__block:last-of-type {
  margin-bottom: 1.5rem;
}
.classes__section-title {
  font-family: "Baskervville", "Georgia", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  font-variant-numeric: lining-nums proportional-nums;
  margin: 0 0 0.5rem;
  color: #725a58;
}
.classes__text {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #535353;
  margin: 0;
}
.classes__bullets {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding-left: 1.125rem;
  color: #535353;
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0;
  list-style-type: disc;
}
.classes__bullets li {
  margin-bottom: 0.25rem;
  padding-left: 0.25rem;
}
.classes__actions {
  text-align: left;
  margin-top: 1rem;
  padding-top: 0.5rem;
}
@media (max-width: 767px) {
  .classes__actions {
    text-align: center;
    padding-top: 0.25rem;
    margin-top: 0.5rem;
  }
}
.classes__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 328px;
  min-width: 160px;
  min-height: 53px;
  padding: 20px 32px;
  white-space: nowrap;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: middle;
  text-box-trim: trim-start;
  text-box-edge: cap alphabetic;
  color: #5e4a49;
  background-color: transparent;
  border: 0.8px solid #5e4a49;
  border-radius: 0;
  opacity: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
@media (min-width: 768px) {
  .classes__btn {
    width: auto;
    max-width: none;
    min-height: 62px;
    padding: 24px 32px;
    border-width: 1px;
  }
}
.classes__btn:hover {
  background-color: rgba(94, 74, 73, 0.04);
}

.class-detail {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .class-detail {
    padding-top: 184px;
  }
}
.class-detail {
  padding-bottom: 0;
}
.class-detail__top {
  background-color: #f8f6f4;
  padding: 1.5rem 0 1rem;
}
@media (min-width: 768px) {
  .class-detail__top {
    padding: 2rem 0 1.5rem;
  }
}
@media (max-width: 767px) {
  .class-detail__top .class-detail__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.class-detail__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.class-detail__title-wrap {
  text-align: center;
  margin-top: 0.5rem;
}
.class-detail__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
@media (max-width: 767px) {
  .class-detail__title-underline {
    display: none;
  }
}
.class-detail__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  font-variant-numeric: lining-nums proportional-nums;
  text-box-trim: trim-start;
  text-box-edge: cap alphabetic;
  color: #725a58;
  text-decoration: none;
}
@media (max-width: 767px) {
  .class-detail__back {
    margin-bottom: 1.5rem;
  }
}
.class-detail__back:hover {
  text-decoration: underline;
}
.class-detail__page-title {
  margin: 0 0 1rem;
  text-align: center;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.625rem, 4.2vw, 2.25rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0;
  color: #725a58;
}
.class-detail__title-num {
  font-family: inherit;
  font-size: 1.05em;
  font-weight: 400;
  font-variant-numeric: lining-nums proportional-nums;
  line-height: inherit;
  display: inline;
  vertical-align: baseline;
}
.class-detail__shell {
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: clip;
  background-color: #f9e7e7;
  border-top: 1px solid rgba(114, 90, 88, 0.18);
  padding: 60px 0 2.5rem;
}
@media (min-width: 768px) {
  .class-detail__shell {
    padding: 60px 0 4rem;
  }
}
@media (max-width: 767px) {
  .class-detail__shell {
    padding-top: 0;
    border-top: none;
  }
}
.class-detail__shell > .class-detail__container.class-detail__layout {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .class-detail__shell > .class-detail__container.class-detail__layout {
    padding-left: 0;
    padding-right: 0;
  }
}
.class-detail__layout {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .class-detail__layout {
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .class-detail__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
}
.class-detail__sidebar {
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .class-detail__sidebar {
    width: 32%;
    max-width: 22rem;
  }
}
.class-detail__card {
  box-sizing: border-box;
  background-color: #fdf2f2;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .class-detail__card {
    border: 1px solid #191919;
  }
}
@media (max-width: 767px) {
  .class-detail__card > .class-detail__card-body {
    order: 1;
  }
  .class-detail__card > .class-detail__card-media {
    order: 2;
  }
}
.class-detail__card-media {
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: rgba(25, 25, 25, 0.04);
}
@media (max-width: 767px) {
  .class-detail__card-media {
    margin-top: 0;
    background-color: #f8f6f4;
  }
}
.class-detail__card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 328/500;
  object-fit: cover;
  display: block;
}
.class-detail__card-body {
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .class-detail__card-body {
    box-sizing: border-box;
    width: 100%;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
  }
  .class-detail__card-body > .class-detail__card-title,
  .class-detail__card-body > .class-detail__meta,
  .class-detail__card-body > .class-detail__join {
    margin: 0;
  }
}
.class-detail__card-title {
  margin: 0 0 1rem;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: #725a58;
}
@media (max-width: 767px) {
  .class-detail__card-title {
    display: none;
  }
}
.class-detail__meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.class-detail__meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.class-detail__meta-icon {
  flex-shrink: 0;
  line-height: 0;
  padding-top: 2px;
}
.class-detail__meta-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.class-detail__meta-text {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #535353;
}
.class-detail__join {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 18px 24px;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #5e4a49;
  background-color: transparent;
  border: 1px solid #5e4a49;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.class-detail__join:hover {
  background-color: rgba(94, 74, 73, 0.06);
}
.class-detail__join-wrap {
  display: none;
}
@media (max-width: 767px) {
  .class-detail__join-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .class-detail__join--footer {
    box-sizing: border-box;
    width: 328px;
    max-width: 100%;
    min-width: 160px;
    min-height: 62px;
    height: auto;
    gap: 10px;
    padding: 24px 32px;
    opacity: 1;
    transform: rotate(0deg);
    border-width: 0.8px;
    border-style: solid;
    border-color: #5e4a49;
    background-color: transparent;
    font-size: 20px;
    line-height: 1.5;
  }
}
.class-detail__main {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767px) {
  .class-detail__main {
    box-sizing: border-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.class-detail__section-title {
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: #725a58;
  margin: 0 0 1rem;
}
.class-detail__overview {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #535353;
  margin: 0 0 2rem;
}
.class-detail__module {
  margin-bottom: 1.5rem;
}
.class-detail__module:last-child {
  margin-bottom: 0;
}
.class-detail__module-title {
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  color: #191919;
  margin: 0 0 0.5rem;
}
.class-detail__list {
  margin: 0;
  padding-left: 1.25rem;
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #535353;
  list-style-type: disc;
}
.class-detail__list li {
  margin-bottom: 0.25rem;
}
.class-detail__list li:last-child {
  margin-bottom: 0;
}

.class-detail--one-to-one .class-detail__page-title,
.class-detail--workshop .class-detail__page-title,
.class-detail--beginner .class-detail__page-title {
  font-size: clamp(2rem, 8vw, 5rem);
  line-height: 1.2;
  letter-spacing: 0;
  font-variant-numeric: lining-nums proportional-nums;
}
.class-detail--one-to-one .class-detail__page-title .class-detail__title-num,
.class-detail--workshop .class-detail__page-title .class-detail__title-num,
.class-detail--beginner .class-detail__page-title .class-detail__title-num {
  font-size: 1em;
  font-variant-numeric: lining-nums proportional-nums;
}
.class-detail--one-to-one .class-detail__card,
.class-detail--workshop .class-detail__card,
.class-detail--beginner .class-detail__card {
  background-color: #f9e7e7;
  container-type: inline-size;
  container-name: class-detail-card;
}
@media (max-width: 767px) {
  .class-detail--one-to-one .class-detail__card,
  .class-detail--workshop .class-detail__card,
  .class-detail--beginner .class-detail__card {
    background-color: #f8f6f4;
    gap: 0;
  }
}
.class-detail--one-to-one .class-detail__card-body,
.class-detail--workshop .class-detail__card-body,
.class-detail--beginner .class-detail__card-body {
  background-color: #f9e7e7;
}
@media (max-width: 767px) {
  .class-detail--one-to-one .class-detail__card-body,
  .class-detail--workshop .class-detail__card-body,
  .class-detail--beginner .class-detail__card-body {
    background-color: #f8f6f4;
  }
}
.class-detail--one-to-one .class-detail__main,
.class-detail--workshop .class-detail__main,
.class-detail--beginner .class-detail__main {
  text-align: left;
  container-type: inline-size;
  container-name: class-detail-main;
}
@media (min-width: 768px) {
  .class-detail--one-to-one .class-detail__sidebar,
  .class-detail--workshop .class-detail__sidebar,
  .class-detail--beginner .class-detail__sidebar {
    flex-basis: 36%;
    width: 36%;
    max-width: 24rem;
  }
}
.class-detail--one-to-one .class-detail__section-title,
.class-detail--workshop .class-detail__section-title,
.class-detail--beginner .class-detail__section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
}
.class-detail--one-to-one .class-detail__main > .class-detail__section-title:first-of-type,
.class-detail--workshop .class-detail__main > .class-detail__section-title:first-of-type,
.class-detail--beginner .class-detail__main > .class-detail__section-title:first-of-type {
  margin-bottom: 1rem;
}
.class-detail--one-to-one .class-detail__overview + .class-detail__section-title,
.class-detail--workshop .class-detail__overview + .class-detail__section-title,
.class-detail--beginner .class-detail__overview + .class-detail__section-title {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.class-detail--one-to-one .class-detail__overview,
.class-detail--workshop .class-detail__overview,
.class-detail--beginner .class-detail__overview {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 0;
}
.class-detail--one-to-one .class-detail__overview--two-lines,
.class-detail--workshop .class-detail__overview--two-lines,
.class-detail--beginner .class-detail__overview--two-lines {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  font-size: clamp(10px, 2.65cqi + 0.16rem, 17px);
}
@supports not (font-size: 1cqi) {
  .class-detail--one-to-one .class-detail__overview--two-lines,
  .class-detail--workshop .class-detail__overview--two-lines,
  .class-detail--beginner .class-detail__overview--two-lines {
    font-size: clamp(10px, 1.9vw + 0.32rem, 17px);
  }
}
.class-detail--one-to-one .class-detail__overview--three-lines,
.class-detail--workshop .class-detail__overview--three-lines,
.class-detail--beginner .class-detail__overview--three-lines {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  font-size: clamp(11px, 2.9cqi + 0.12rem, 18px);
}
@supports not (font-size: 1cqi) {
  .class-detail--one-to-one .class-detail__overview--three-lines,
  .class-detail--workshop .class-detail__overview--three-lines,
  .class-detail--beginner .class-detail__overview--three-lines {
    font-size: clamp(11px, 2.15vw + 0.38rem, 18px);
  }
}
.class-detail--one-to-one .class-detail__overview-line,
.class-detail--workshop .class-detail__overview-line,
.class-detail--beginner .class-detail__overview-line {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
}
.class-detail--one-to-one .class-detail__section-title + .class-detail__curriculum,
.class-detail--workshop .class-detail__section-title + .class-detail__curriculum,
.class-detail--beginner .class-detail__section-title + .class-detail__curriculum {
  margin-top: 0.5rem;
}
.class-detail--one-to-one .class-detail__module-title,
.class-detail--workshop .class-detail__module-title,
.class-detail--beginner .class-detail__module-title {
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  color: #725a58;
}
.class-detail--one-to-one .class-detail__list,
.class-detail--workshop .class-detail__list,
.class-detail--beginner .class-detail__list {
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0;
  list-style-position: outside;
  padding-left: 1.35rem;
}
.class-detail--one-to-one .class-detail__list li,
.class-detail--workshop .class-detail__list li,
.class-detail--beginner .class-detail__list li {
  display: list-item;
  padding-left: 0.15em;
  box-sizing: border-box;
  max-width: 100%;
}
@media (max-width: 767px) {
  .class-detail--one-to-one .class-detail__overview--two-lines,
  .class-detail--one-to-one .class-detail__overview--three-lines,
  .class-detail--workshop .class-detail__overview--two-lines,
  .class-detail--workshop .class-detail__overview--three-lines,
  .class-detail--beginner .class-detail__overview--two-lines,
  .class-detail--beginner .class-detail__overview--three-lines {
    font-size: 18px;
  }
  .class-detail--one-to-one .class-detail__overview-line,
  .class-detail--workshop .class-detail__overview-line,
  .class-detail--beginner .class-detail__overview-line {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

.class-detail--one-to-one .class-detail__card-title {
  text-align: center;
  font-size: clamp(11px, min(2.25rem, 7.8cqi + 0.125rem), 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 0;
}
.class-detail--one-to-one .class-detail__card-title-on {
  text-transform: none;
}

.class-detail--workshop .class-detail__list-item--fit,
.class-detail--beginner .class-detail__list-item--fit {
  list-style-position: outside;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: clamp(8px, 2.05cqi + 0.14rem, 16px);
}
@supports not (font-size: 1cqi) {
  .class-detail--workshop .class-detail__list-item--fit,
  .class-detail--beginner .class-detail__list-item--fit {
    font-size: clamp(8px, 1.65vw + 0.26rem, 16px);
  }
}
.class-detail--workshop .class-detail__list-line,
.class-detail--beginner .class-detail__list-line {
  display: block;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  padding-inline-start: 0;
  margin-inline-start: 0;
}
.class-detail--workshop .class-detail__card-title,
.class-detail--beginner .class-detail__card-title {
  text-align: center;
  text-transform: none;
  font-size: clamp(14px, min(1.875rem, 8.5cqi + 0.15rem), 1.875rem);
  line-height: 1.3;
  letter-spacing: 0;
  white-space: normal;
  min-width: 0;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .class-detail--workshop .class-detail__list-item--fit,
  .class-detail--beginner .class-detail__list-item--fit {
    font-size: 16px;
  }
  .class-detail--workshop .class-detail__list-line,
  .class-detail--beginner .class-detail__list-line {
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

.beauty-tips {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .beauty-tips {
    padding-top: 184px;
  }
}
.beauty-tips {
  padding-bottom: 0;
}
.beauty-tips__hero {
  background-color: #f8f6f4;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .beauty-tips__hero {
    padding: 2.5rem 0 3rem;
  }
}
.beauty-tips__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.beauty-tips__container--main {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .beauty-tips__container--main {
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .beauty-tips__container--main {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
  }
}
.beauty-tips__title-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}
.beauty-tips__title {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  color: #725a58;
}
.beauty-tips__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
.beauty-tips__intro {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  color: #191919;
}
.beauty-tips__hero-cta {
  text-align: center;
}
.beauty-tips__shell {
  background-color: #fbe7e4;
}
.beauty-tips__filters {
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem 2rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 1.9375rem;
  margin: 0 auto 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
@media (max-width: 767px) {
  .beauty-tips__filters {
    width: 323px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 16px;
    min-height: 14px;
    opacity: 1;
    transform: rotate(0deg);
  }
}
@media (min-width: 768px) {
  .beauty-tips__filters {
    justify-content: center;
    gap: 32px;
  }
}
.beauty-tips__filter {
  flex-shrink: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  color: #888888;
  background: none;
  border: none;
  padding: 0;
  white-space: nowrap;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.beauty-tips__filter:hover {
  color: #191919;
}
.beauty-tips__filter.is-active {
  color: #191919;
  font-weight: 400;
  border-bottom-color: #725a58;
}
@media (max-width: 767px) {
  .beauty-tips__filter {
    font-size: 14px;
    line-height: 14px;
    border-bottom: none;
    margin-bottom: 0;
    opacity: 1;
    transform: rotate(0deg);
  }
  .beauty-tips__filter.is-active {
    border-bottom: none;
  }
}
.beauty-tips__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: min(100%, 52rem);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (min-width: 576px) {
  .beauty-tips__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .beauty-tips__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.beauty-tips__card {
  min-width: 0;
}
.beauty-tips__card.is-hidden {
  display: none;
}
@media (max-width: 767px) {
  .beauty-tips__card.is-beyond-mobile-preview {
    display: none;
  }
}
.beauty-tips__card-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background-color: rgba(25, 25, 25, 0.06);
  box-shadow: 0 4px 20px rgba(25, 25, 25, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.beauty-tips__card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(25, 25, 25, 0.1);
}
.beauty-tips__card-link:focus-visible {
  outline: 2px solid #725a58;
  outline-offset: 3px;
}
.beauty-tips__thumb {
  position: relative;
  z-index: 0;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.beauty-tips__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.beauty-tips__play {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(25, 25, 25, 0.12);
}
.beauty-tips__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #725a58;
}
.beauty-tips__more-wrap {
  text-align: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
}
.beauty-tips__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 10.0625rem;
  max-width: 100%;
  min-width: 160px;
  min-height: 62px;
  padding: 24px 32px;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #5e4a49;
  background-color: transparent;
  border: 1px solid #5e4a49;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.beauty-tips__btn:hover {
  background-color: rgba(94, 74, 73, 0.04);
}
.beauty-tips__btn--hero {
  width: 13.125rem;
  min-height: 56px;
  padding: 20px 28px;
  font-size: 18px;
}

.about {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .about {
    padding-top: 184px;
  }
}
.about {
  padding-bottom: 0;
}
.about__hero {
  background-color: #f8f6f4;
  padding: 2rem 0 1.5rem;
}
@media (min-width: 768px) {
  .about__hero {
    padding: 2.5rem 0 3rem;
  }
}
.about__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
.about__container--bio {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
@media (max-width: 767px) {
  .about__container--bio {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
}
.about__title-wrap {
  text-align: center;
  margin-bottom: 0;
}
.about__eyebrow {
  margin: 0 0 0.5rem;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: #e3b6b1;
}
.about__title {
  margin: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.5rem, 10vw, 5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  color: #725a58;
}
@media (max-width: 767px) {
  .about__title {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.375rem, 5.8vw + 0.35rem, 2.75rem);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }
}
.about__title-underline {
  width: 200px;
  height: 0;
  margin: 0.5rem auto 0;
  padding: 0;
  border: none;
  border-top: 1px solid #e3b6b1;
  background: none;
  opacity: 1;
}
.about__shell {
  background-color: #fbe7e4;
}
.about__profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .about__profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}
.about__media {
  flex-shrink: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  line-height: 0;
  background-color: rgba(25, 25, 25, 0.04);
}
@media (min-width: 768px) {
  .about__media {
    width: 21.9375rem;
    max-width: 100%;
  }
}
.about__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 351/424;
  object-fit: cover;
  display: block;
}
.about__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
@media (max-width: 767px) {
  .about__body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.about__headline {
  margin: 0 0 1.5rem;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  color: #725a58;
}
.about__text {
  max-width: 100%;
  min-width: 0;
}
.about__text-copy {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #535353;
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
}
.about__actions {
  margin-top: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .about__actions {
    text-align: left;
  }
}
.about__btn {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 10rem;
  max-width: 100%;
  min-width: 160px;
  min-height: 62px;
  padding: 24px 32px;
  font-family: "Baskervville", "Georgia", serif;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  color: #5e4a49;
  background-color: transparent;
  border: 1px solid #191919;
  border-radius: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.about__btn:hover {
  background-color: rgba(25, 25, 25, 0.04);
}
.about__brands {
  background-color: #f8f6f4;
  padding: clamp(2.5rem, 6vw, 5rem) 0 6rem;
}
@media (min-width: 768px) {
  .about__brands {
    padding-bottom: 7.5rem;
  }
}
.about__brands .about__container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2.75rem;
  max-width: 90rem;
}
@media (min-width: 768px) {
  .about__brands .about__container {
    min-height: 22.375rem;
  }
}
.about__brands-title {
  margin: 0;
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: #725a58;
}
.about__brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.75rem;
  align-items: center;
  justify-items: center;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .about__brands-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.about__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 10rem;
  padding: 0.5rem;
}
.about__brand img {
  width: auto;
  max-width: 120px;
  height: auto;
  max-height: 3rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.about__brand:hover img {
  filter: grayscale(0.4);
  opacity: 0.95;
}

.contact__container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 760px;
}
.contact__intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact__title {
  font-family: "Baskervville", "Georgia", serif;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5rem);
  letter-spacing: 0.2em;
  color: rgba(114, 90, 88, 0.9);
  margin-bottom: 2rem;
}
.contact__title-underline {
  margin: 0 auto 30px;
  width: 200px;
  border: 0.5px solid #e3b6b1;
}
.contact__lead {
  max-width: 460px;
  margin: 0 auto 1.5rem;
  color: #191919;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 300;
  color: #191919;
  font-family: "Avenir";
  line-height: 1.6;
}
.contact__quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 2.5rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: normal;
  color: #725a58;
  font-family: "Avenir";
  list-style: none;
}
.contact__quick-links li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact__quick-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.contact__form {
  max-width: 560px;
  margin: 0 auto;
  background-color: rgba(250, 233, 231, 0.5);
  border: 1px solid rgba(114, 90, 88, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: black;
}
@media (min-width: 768px) {
  .contact__form {
    padding: 2rem;
  }
}
.contact__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(114, 90, 88, 0.4);
}
.contact__tab {
  border: 0;
  background: transparent;
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  font-weight: normal;
  color: #191919;
  font-family: "Lora", "Georgia", serif;
  color: #888888;
  padding: 0 0 0.5rem;
  border-bottom: 1px solid transparent;
  cursor: pointer;
}
.contact__tab--active {
  color: black;
  border-bottom-color: black;
}
.contact__panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__panel[hidden] {
  display: none;
}
.contact__step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__step[hidden] {
  display: none;
}
.contact__back {
  align-self: flex-start;
  border: none;
  background: transparent;
  padding: 0;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.8);
  font-family: "Avenir";
  cursor: pointer;
}
.contact__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__group-title {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: normal;
  color: black;
  font-family: "Baskervville";
}
.contact__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.contact__chips--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border: 1px solid transparent;
  background-color: #fbfafa;
  padding: 0.5rem 1rem;
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  font-weight: normal;
  color: black;
  font-family: "Lora", "Georgia", serif;
  cursor: pointer;
}
.contact__chip input {
  display: none;
}
.contact__chip-label {
  flex: 1;
  color: #535353;
}
.contact__chip-check {
  width: 24px;
  height: 24px;
  opacity: 0;
}
.contact .contact__chip input:checked ~ .contact__chip-check {
  opacity: 1;
}
.contact .contact__chip:has(input:checked) {
  border: 1px solid #b99692;
}
.contact .contact__chip:has(input:checked) .contact__chip-label {
  color: black;
}
.contact__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .contact__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__row .contact__field > .contact__check {
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: normal;
  color: black;
  font-family: "Lora", "Georgia", serif;
}
.contact__premium-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
}
@media (min-width: 576px) {
  .contact__premium-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__guest-list {
  border: 1px solid rgba(114, 90, 88, 0.15);
  background-color: rgba(251, 250, 250, 0.7);
}
.contact__guest-list .contact__check input[type=checkbox] {
  border-color: #e3b6b1;
}
.contact__guest-list .contact__check input[type=checkbox]:checked {
  background-color: #e3b6b1;
  border-color: #e3b6b1;
}
.contact__guest-list .contact__check input[type=checkbox]:focus-visible {
  outline: 2px solid rgba(227, 182, 177, 0.35);
}
.contact__guest-row {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) 78px 1px 1fr;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(114, 90, 88, 0.12);
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: normal;
  color: black;
  font-family: "Avenir";
}
@media (min-width: 576px) {
  .contact__guest-row {
    grid-template-columns: minmax(90px, 1fr) 78px 1px 1fr 1fr;
  }
}
.contact__guest-row > span:first-child {
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  font-weight: normal;
  color: black;
  font-family: "Avenir";
}
.contact__guest-row:last-child {
  border-bottom: none;
}
.contact__guest-counter {
  display: inline-grid;
  grid-template-columns: 26px 26px 26px;
  align-items: center;
  justify-items: center;
  height: 34px;
  background-color: #fae9e7;
  padding: 0;
  margin-right: 0;
}
.contact__guest-counter-divider {
  width: 1px;
  height: 46px;
  background-color: rgba(185, 150, 146, 0.6);
  justify-self: center;
}
.contact__guest-counter-button {
  border: none;
  background: transparent;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 300;
  color: #535353;
  font-family: "Avenir";
  line-height: 1;
  cursor: pointer;
}
.contact__guest-counter-button:disabled {
  opacity: 0.35;
  cursor: default;
}
.contact__guest-counter-value {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 300;
  color: #191919;
  font-family: "Avenir";
  line-height: 1;
  min-width: 16px;
  text-align: center;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__field > label:not(.contact__check) {
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  font-weight: normal;
  color: black;
  font-family: "Baskervville";
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  background-color: #fbfafa;
  border: 1px solid rgba(114, 90, 88, 0.25);
  padding: 0.5rem 1rem;
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.85);
  font-family: "Lora", "Georgia", serif;
}
.contact__field textarea {
  min-height: 110px;
  resize: vertical;
}
.contact__hint {
  margin-top: -0.25rem;
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.75);
  font-family: "Lora", "Georgia", serif;
}
.contact__check {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: normal;
  color: black;
  font-family: "Lora", "Georgia", serif;
}
.contact__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2px;
}
.contact__choices--stack {
  flex-direction: column;
  gap: 0.5rem;
}
.contact__choice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  font-weight: normal;
  color: black;
  font-family: "Lora", "Georgia", serif;
}
.contact__check input[type=checkbox], .contact__check input[type=radio], .contact__choice input[type=checkbox], .contact__choice input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  inline-size: 18px;
  block-size: 18px;
  min-inline-size: 18px;
  min-block-size: 18px;
  margin: 0;
  padding: 0;
  line-height: 1;
  border: 1.5px solid #b99692;
  background-color: #fbfafa;
  display: grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}
.contact__check input[type=checkbox], .contact__choice input[type=checkbox] {
  border-radius: 0;
}
.contact__check input[type=radio], .contact__choice input[type=radio] {
  border-radius: 50%;
  border: 3px solid #fbfafa;
  box-shadow: 0 0 0 1px rgba(185, 150, 146, 0.7);
}
.contact__check input[type=checkbox]:checked, .contact__choice input[type=checkbox]:checked {
  background-color: #b99692;
  border-color: #b99692;
}
.contact__check input[type=checkbox]:checked::after, .contact__choice input[type=checkbox]:checked::after {
  content: "";
  width: 4px;
  height: 8px;
  border: solid #fbfafa;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.contact__check input[type=radio]:checked::after, .contact__choice input[type=radio]:checked::after {
  content: none;
}
.contact__check input[type=radio]:checked, .contact__choice input[type=radio]:checked {
  background-color: rgba(185, 150, 146, 0.75);
  border-color: #fbfafa;
  box-shadow: 0 0 0 1px rgba(185, 150, 146, 0.7);
}
.contact__check input[type=checkbox]:focus-visible, .contact__check input[type=radio]:focus-visible, .contact__choice input[type=checkbox]:focus-visible, .contact__choice input[type=radio]:focus-visible {
  outline: 2px solid rgba(185, 150, 146, 0.35);
  outline-offset: 2px;
}
.contact__group > input {
  width: 100%;
  background-color: #fbfafa;
  border: 1px solid rgba(114, 90, 88, 0.25);
  padding: 0.5rem 1rem;
  font-size: clamp(0.8125rem, 1.1vw, 0.875rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.85);
  font-family: "Lora", "Georgia", serif;
}
.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  outline: none;
  border-color: rgba(114, 90, 88, 0.55);
}
.contact__submit {
  align-self: center;
  min-width: 120px;
  border: 1px solid rgba(114, 90, 88, 0.4);
  background-color: transparent;
  color: rgba(114, 90, 88, 0.8);
  padding: 0.5rem 1.5rem;
  font-size: clamp(0.8125rem, 1vw, 0.875rem);
  transition: background-color 0.25s, color 0.25s;
}
.contact__submit:hover {
  background-color: rgba(114, 90, 88, 0.08);
  color: #725a58;
}
.contact__next {
  margin-top: 0.5rem;
}
.contact__actions {
  display: flex;
  justify-content: center;
}
.contact__result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__result-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Baskervville";
  line-height: 1.2;
}
.contact__result-subtitle {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Avenir";
}
.contact__result-edit {
  align-self: flex-start;
  border: none;
  background: transparent;
  padding: 0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.85);
  font-family: "Avenir";
  cursor: pointer;
}
.contact__result-card {
  border: 1px solid rgba(114, 90, 88, 0.2);
  background-color: rgba(251, 250, 250, 0.35);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__result-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.contact__result-note {
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.85);
  font-family: "Avenir";
}
.contact__result-price {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.95);
  font-family: "Baskervville";
}
.contact__result-columns {
  display: grid;
  gap: 1rem;
}
@media (min-width: 576px) {
  .contact__result-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__result-columns h3 {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.95);
  font-family: "Baskervville";
  margin-bottom: 0.25rem;
}
.contact__result-columns ul {
  list-style: none;
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: black;
  font-family: "Avenir";
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__result-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
.contact__result-logo-image {
  width: 120px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.contact__result-logo {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.95);
  font-family: "Baskervville";
  line-height: 1;
}
.contact__result-brand {
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Avenir";
}
.contact__result-share {
  min-width: 90px;
}
.contact__class-result {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__class-result-talk {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.95);
  font-family: "Baskervville";
}
.contact__class-result-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Avenir";
}
.contact__class-result-links li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact__signature {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(114, 90, 88, 0.2);
  color: rgba(114, 90, 88, 0.9);
}
.contact__signature-logo {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}
.contact__signature-mark {
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
}
.contact__signature-name {
  font-family: "Baskervville", "Georgia", serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}
.contact__signature-note {
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Lora", "Georgia", serif;
  margin-top: 0.25rem;
}
.contact__signature-links {
  margin-top: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  font-size: clamp(0.75rem, 1vw, 0.8125rem);
  font-weight: normal;
  color: rgba(114, 90, 88, 0.9);
  font-family: "Lora", "Georgia", serif;
  text-transform: lowercase;
}
.contact {
  padding-top: 112px;
}
@media (min-width: 1280px) {
  .contact {
    padding-top: 184px;
  }
}
.contact {
  padding-bottom: 0;
}
.contact__container {
  max-width: 390px;
  padding: 2.5rem 10px 0;
}
.contact__form {
  max-width: 100%;
  padding: 10px 8px 16px;
  background: #f2e8e8;
  border: 1px solid #d7c8c8;
  gap: 18px;
}
.contact__tabs {
  gap: 14px;
  border-bottom: 1px solid rgba(66, 57, 57, 0.45);
}
.contact__tab {
  text-align: center;
  padding-bottom: 8px;
  font-size: 28px;
  line-height: 1;
  color: #a49999;
}
.contact__tab--active {
  color: #2f2727;
}
.contact__group-title, .contact__field > label:not(.contact__check) {
  font-family: "Baskervville", serif;
  font-size: 24px;
  line-height: 1.1;
  color: #2f2727;
  margin-bottom: 8px;
}
.contact__hint {
  display: none;
}
.contact__panel[data-panel=classes] .contact__chips {
  grid-template-columns: 1fr;
  gap: 8px;
}
.contact__panel[data-panel=classes] .contact__chip {
  min-height: 42px;
  background: #f3f3f3;
  border: 1px solid #e5d9d9;
  padding: 10px 12px;
}
.contact__panel[data-panel=classes] .contact__chip-label {
  font-size: 14px;
}
.contact__panel[data-panel=services] .contact__chips, .contact__panel[data-panel=services] .contact__chips--two {
  grid-template-columns: 1fr;
  gap: 8px;
}
.contact__panel[data-panel=services] .contact__chip {
  min-height: 42px;
  background: #f3f3f3;
  border: 1px solid #e5d9d9;
  padding: 10px 12px;
}
.contact__panel[data-panel=services] .contact__chip-label {
  font-size: 14px;
}
.contact__field input, .contact__field select, .contact__field textarea, .contact__group > input[type=tel], .contact__phone-row input {
  width: 100%;
  border: 1px solid #cfbcbc;
  border-radius: 0;
  background: #f3f3f3;
  min-height: 40px;
  padding: 9px 11px;
  font-size: 15px;
}
.contact__field textarea {
  min-height: 110px;
  resize: vertical;
}
.contact__check {
  margin-top: 8px;
  font-size: 12px;
  color: #5b4c4c;
}
.contact__group {
  gap: 10px;
}
.contact__choices--stack {
  gap: 10px;
}
.contact__choice {
  font-size: 16px;
  font-family: "Baskervville", serif;
  color: #2f2727;
}
.contact__phone-row {
  display: grid;
  grid-template-columns: 34px 1fr;
}
.contact__country-code {
  border: 1px solid #cfbcbc;
  border-right: 0;
  background: #f3f3f3;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6e6060;
  font-size: 13px;
}
.contact__phone-row input {
  border-left: 0;
}
.contact__submit {
  margin-top: 6px;
  width: 100%;
  min-height: 42px;
  border: 1px solid #c7b3b3;
  background: transparent;
  color: #7a6666;
  font-size: 24px;
  font-family: "Baskervville", serif;
}
.contact__back {
  font-size: 12px;
  font-weight: normal;
  color: #8f7f7f;
  font-family: "Avenir";
  margin-bottom: 2px;
}
.contact__panel[data-panel=services] .contact__group-title {
  font-size: 24px;
}
.contact__panel[data-panel=services] .contact__premium-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}
.contact__panel[data-panel=services] .contact__premium-grid .contact__check {
  margin-top: 0;
  font-size: 12px;
  font-weight: normal;
  color: #4f4141;
  font-family: "Avenir";
}
.contact__panel[data-panel=services] .contact__guest-list {
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__panel[data-panel=services] .contact__guest-row {
  border: 1px solid #e7d8d8;
  padding: 8px 10px;
  background: #f4ecec;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
}
.contact__panel[data-panel=services] .contact__guest-row:last-child {
  border-bottom: 1px solid #e7d8d8;
}
.contact__panel[data-panel=services] .contact__guest-row > span:first-child {
  font-size: 16px;
  line-height: 1.1;
}
.contact__panel[data-panel=services] .contact__guest-counter {
  grid-template-columns: 26px 26px 26px;
  height: 26px;
  background: #eedfdf;
}
.contact__panel[data-panel=services] .contact__guest-counter-button, .contact__panel[data-panel=services] .contact__guest-counter-value {
  font-size: 12px;
}
.contact__panel[data-panel=services] .contact__guest-counter-divider {
  display: none;
}
.contact__panel[data-panel=services] .contact__guest-row .contact__check {
  margin-top: 0;
  grid-column: 1/-1;
  font-size: 12px;
}
.contact__panel[data-panel=services] .contact__group--guest .contact__guest-row > span:first-child {
  font-size: 15px;
}
.contact__panel[data-panel=services] .contact__group--guest .contact__guest-counter-button, .contact__panel[data-panel=services] .contact__group--guest .contact__guest-counter-value {
  font-size: 11px;
}
.contact__panel[data-panel=services] .contact__result {
  gap: 10px;
}
.contact__panel[data-panel=services] .contact__result-title {
  font-size: 24px;
  font-weight: normal;
  color: #4d3e3e;
  font-family: "Baskervville";
  line-height: 1.5;
}
.contact__panel[data-panel=services] .contact__result-subtitle {
  font-size: 14px;
  font-weight: normal;
  color: #4d3e3e;
  font-family: "Avenir";
  line-height: 1.45;
}
.contact__panel[data-panel=services] .contact__result-edit {
  font-size: 18px;
  font-weight: normal;
  color: #716161;
  font-family: "Baskervville";
  line-height: 1;
}
.contact__panel[data-panel=services] .contact__result-card {
  border: 1px solid #cfbdbd;
  background: transparent;
  padding: 10px;
  gap: 10px;
  margin-top: 20px;
}
.contact__panel[data-panel=services] .contact__result-image {
  height: 138px;
}
.contact__panel[data-panel=services] .contact__result-note {
  font-size: 16px;
  font-weight: normal;
  color: #5c4f4f;
  font-family: "Avenir";
  margin-top: 20px;
}
.contact__panel[data-panel=services] .contact__result-price {
  font-size: 36px;
  font-weight: normal;
  color: #5a4a4a;
  font-family: "Baskervville";
  line-height: 1.3;
  margin-top: -2px;
}
.contact__panel[data-panel=services] .contact__result-columns {
  grid-template-columns: 1fr;
  gap: 32px;
}
.contact__panel[data-panel=services] .contact__result-columns h3 {
  font-size: 28px;
  font-weight: normal;
  color: #3d3030;
  font-family: "Baskervville";
  margin-bottom: 2px;
}
.contact__panel[data-panel=services] .contact__result-columns ul {
  font-size: 16px;
  font-weight: normal;
  color: #3d3030;
  font-family: "Avenir";
  gap: 4px;
}
.contact__panel[data-panel=services] .contact__result-footer {
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  gap: 10px;
}
.contact__panel[data-panel=services] .contact__result-share {
  min-width: 0;
  width: 100%;
}
.contact__result-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.contact__panel[data-panel=services] .contact__result-logo-image {
  width: 54px;
}
.contact__result-socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact__result-socials .contact__signature-icon {
  width: 16px;
  height: 16px;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .contact {
    padding-top: 112px;
    padding-bottom: 0;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) and (min-width: 1280px) {
  .contact {
    padding-top: 184px;
  }
}
@media (min-width: 768px) {
  .contact__container {
    max-width: 720px;
    padding: 2.5rem 20px 0;
  }
  .contact__form {
    padding: 22px 20px 28px;
  }
  .contact__tabs {
    gap: 28px;
  }
  .contact__tab {
    font-size: 40px;
  }
  .contact__group-title, .contact__field > label:not(.contact__check) {
    font-size: 24px;
  }
  .contact__panel[data-panel=services] [data-service-step="1"] .contact__chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  .contact__panel[data-panel=services] .contact__premium-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
  .contact__panel[data-panel=services] .contact__premium-grid .contact__check {
    font-size: 18px;
    line-height: 1.25;
  }
  .contact__panel[data-panel=services] #event-location + .contact__check {
    font-size: 18px;
    line-height: 1.2;
  }
  .contact__panel[data-panel=services] .contact__guest-list {
    gap: 10px;
  }
  .contact__panel[data-panel=services] .contact__guest-row {
    border: 0;
    padding: 20px 28px;
    background: #f3f3f3;
    grid-template-columns: minmax(130px, 1fr) auto 1px minmax(140px, 220px) minmax(140px, 220px);
    gap: 16px;
    align-items: center;
  }
  .contact__panel[data-panel=services] .contact__guest-row:first-child .contact__check {
    grid-column: 5;
  }
  .contact__panel[data-panel=services] .contact__guest-row > span:first-child {
    font-size: 24px;
    line-height: 1;
  }
  .contact__panel[data-panel=services] .contact__guest-counter {
    grid-template-columns: 30px 30px 30px;
    height: 50px;
    background: #eedfdf;
  }
  .contact__panel[data-panel=services] .contact__guest-counter-button, .contact__panel[data-panel=services] .contact__guest-counter-value {
    font-size: 24px;
    line-height: 1;
  }
  .contact__panel[data-panel=services] .contact__guest-counter-divider {
    display: block;
    height: 44px;
    background-color: #dcc6c6;
  }
  .contact__panel[data-panel=services] .contact__guest-row .contact__check {
    margin-top: 0;
    grid-column: auto;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    line-height: 1;
    color: #2f2727;
  }
  .contact__panel[data-panel=services] .contact__group--guest .contact__guest-row > span:first-child {
    font-size: 20px;
  }
  .contact__panel[data-panel=services] .contact__group--guest .contact__guest-counter-button, .contact__panel[data-panel=services] .contact__group--guest .contact__guest-counter-value {
    font-size: 20px;
  }
  .contact__panel[data-panel=services] .contact__guest-row .contact__check input[type=checkbox] {
    inline-size: 24px;
    block-size: 24px;
    min-inline-size: 24px;
    min-block-size: 24px;
    border: 2px solid #d8b3af;
    background-color: #fff;
  }
  .contact__panel[data-panel=services] .contact__guest-row .contact__check input[type=checkbox]:checked {
    background-color: #d8b3af;
    border-color: #d8b3af;
  }
  .contact__panel[data-panel=services] .contact__guest-row .contact__check input[type=checkbox]:checked::after {
    width: 7px;
    height: 14px;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .contact__panel[data-panel=services] .contact__result-title {
    font-size: 32px;
  }
  .contact__panel[data-panel=services] .contact__result-columns {
    grid-template-columns: 1fr 1fr;
  }
  .contact__field textarea {
    min-height: 160px;
  }
}

/*# sourceMappingURL=main.css.map */
