:root{
  --bg: #f8f6f2;
  --white: #ffffff;
  --paper: #fbfaf7;
  --text: #3e3934;
  --muted: #77716b;
  --line: #d8d1c8;
  --brown: #7b6654;
  --brown-dark: #6d5948;
  --header-h: 72px;
  --container: min(1320px, calc(100% - 96px));
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-tc: "Noto Serif TC", "PMingLiU", serif;
  --font-sans: "Montserrat", Arial, sans-serif;
}

*{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-tc);
  font-size: 14px;
  letter-spacing: .03em;
  overflow-x: hidden;
}

body.nav-open{
  overflow: hidden;
}

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

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

/* =========================
   Header
========================= */

.site-header{
  width: 100%;
  height: var(--header-h);
  background: #fff;
  position: relative;
  z-index: 100;
}

.navbar{
  width: min(1680px, calc(100% - 80px));
  height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--header-h);
  flex-shrink: 0;
}

.brand-logo{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand span{
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #4b2f24;
  line-height: 1;
  white-space: nowrap;
}

.nav-menu{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.nav-menu a{
  /*font-family: var(--font-sans);*/
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #2f2b28;
  transition: color .2s ease;
}

.nav-menu a:hover{
  color: var(--brown);
}

.book-btn{
  min-width: 112px;
  height: 40px;
  padding: 0 24px;
  border: 1px solid #8c8176;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle{
  display: none;
  width: 38px;
  height: 38px;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span{
  display: block;
  width: 26px;
  height: 1px;
  background: #2f2b28;
  margin: 7px auto;
  transition: .25s ease;
}

.nav-open .menu-toggle span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2){
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   Hero
========================= */

.hero{
  min-height: calc(100vh - var(--header-h));
  position: relative;
  color: #fff;
  overflow: hidden;
  background: #a99f94;
  isolation: isolate;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,18,16,.22), rgba(80,70,62,.18), rgba(80,70,62,.22)),
    url("../img/index/hero-bg.jpg") center center / cover no-repeat;
  z-index: -2;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,0) 42%, rgba(0,0,0,.08));
  z-index: -1;
}

.hero__inner{
  width: var(--container);
  min-height: calc(100vh - var(--header-h));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.hero__copy{
  width: min(620px, 48vw);
  margin-right: 8vw;
  transform: translateY(10px);
}

.eyebrow{
  margin: 0 0 22px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .24em;
  color: rgba(255,255,255,.94);
  position: relative;
  display: inline-block;
}

.eyebrow::after{
  content: "";
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,.62);
  position: absolute;
  left: calc(100% + 16px);
  top: 50%;
}

.hero h1{
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(64px, 6.8vw, 92px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.025em;
  color: #fff;
}

.hero__subtitle{
  margin: 24px 0 44px;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

/* =========================
   Buttons
========================= */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 168px;
  padding: 0 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  transition: .25s ease;
}

.btn--dark{
  background: var(--brown-dark);
  color: #fff;
}

.btn--dark:hover{
  background: #584535;
}

.btn--outline{
  min-width: 120px;
  height: 34px;
  border: 1px solid #9b948c;
  color: #716b65;
  background: transparent;
}

.btn--outline:hover{
  background: var(--brown-dark);
  color: #fff;
  border-color: var(--brown-dark);
}

.btn--light{
  min-width: 150px;
  height: 40px;
  color: #6b625b;
  background: #fff;
}

/* Hero Button Upgrade */

.hero .btn--dark{
  position: relative;
  min-width: 238px;
  height: 52px;
  padding: 0 62px 0 50px;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  background: rgba(109, 89, 72, .86);
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;

  box-shadow:
    0 18px 42px rgba(30,24,20,.26),
    inset 0 0 0 1px rgba(255,255,255,.16);

  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero .btn--dark::before{
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  pointer-events: none;
}

.hero .btn--dark::after{
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);

  display: block;
  border-radius: 50%;
  background-color: rgba(255,255,255,.92);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' fill='none' stroke='%236d5948' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;

  font-size: 0;
  line-height: 0;
  transition: .28s ease;
}

.hero .btn--dark:hover{
  background: rgba(95, 76, 61, .94);
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(30,24,20,.34),
    inset 0 0 0 1px rgba(255,255,255,.22);
}

.hero .btn--dark:hover::after{
  right: 6px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' fill='none' stroke='%234b3b30' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================
   Layout
========================= */

.section{
  padding: 96px 0;
}

.container{
  width: var(--container);
  margin: 0 auto;
}

/* =========================
   About
========================= */

.about{
  background: var(--paper);
}

.about__grid{
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 140px);
}

.about__text{
  padding-left: 0;
}

.section-kicker{
  margin: 0 0 36px;
  font-family: var(--font-sans);
  font-size: 30px;
  letter-spacing: .12em;
  color: #5f5a55;
  position: relative;
  display: inline-block;
}

.section-kicker::after{
  content: "";
  width: 34px;
  height: 1px;
  background: #938a80;
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
}

.about h2{
  margin: 0 0 28px;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .05em;
  color: #4c4742;
}

.about p:not(.section-kicker){
  margin: 0 0 34px;
  font-size: 16px;
  line-height: 2.1;
  color: #827c77;
}

.about__image{
  position: relative;
  padding: 18px 18px 0 0;
  isolation: isolate;
}

.about__image::before{
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(123, 102, 84, .35);
  border-radius: 50%;
  z-index: -2;
}

.about__image::after{
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  right: 0;
  bottom: -18px;
  border: 1px solid rgba(123, 102, 84, .32);
  border-radius: 0 90px 0 90px;
  z-index: -1;
}

.about__image img{
  width: 100%;
  aspect-ratio: 760 / 500;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  box-shadow: 0 22px 46px rgba(80, 69, 60, .14);
}

/* =========================
   Services
========================= */

.services{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 88% 20%, rgba(123,102,84,.08) 0%, rgba(123,102,84,0) 30%),
    #f4f1ec;
}

.services::before{
  content: "SERVICES";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(78px, 12vw, 180px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(123,102,84,.045);
  white-space: nowrap;
  pointer-events: none;
}

.services .container{
  position: relative;
  z-index: 2;
}

.section-title{
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2{
  margin: 0;
  /*font-family: var(--font-serif);*/
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: .02em;
  color: #24211f;
}

.section-title span{
  display: block;
  width: 34px;
  height: 1px;
  background: #8d8175;
  margin: 18px auto 0;
}

.services .section-title{
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto 58px;
  padding: 26px 20px 34px;
  text-align: center;
}

.services .section-title::before{
  content: "Premium Home Salon";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 18px;
  margin-bottom: 16px;

  border: 1px solid rgba(123,102,84,.32);
  border-radius: 999px;
  background: rgba(255,255,255,.45);

  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(123,102,84,.85);

  box-shadow: 0 12px 28px rgba(80,69,60,.06);
}

.services .section-title h2{
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 78px;

  /*font-family: var(--font-serif);*/
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .045em;
  color: #2f2a26;
}

.services .section-title h2::before,
.services .section-title h2::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,102,84,.58));
}

.services .section-title h2::before{
  left: 0;
}

.services .section-title h2::after{
  right: 0;
  transform: rotate(180deg);
}

.services .section-title span{
  position: relative;
  display: block;
  width: 86px;
  height: 1px;
  margin: 22px auto 0;
  background: rgba(123,102,84,.45);
}

.services .section-title span::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #f4f1ec;
  border: 1px solid rgba(123,102,84,.5);
}

.services .section-title span::after{
  content: "到府剪髮・染髮・護髮";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;

  font-size: 13px;
  line-height: 1.8;
  letter-spacing: .16em;
  color: rgba(95,89,84,.78);
}

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

.service-card{
  min-height: 240px;
  padding: 42px 22px 34px;
  border: 1px solid #ddd7cf;
  background: rgba(255,255,255,.28);
  text-align: center;
  transition: .25s ease;
}

.service-card:hover{
  background: rgba(255,255,255,.58);
  transform: translateY(-4px);
}

.service-icon{
  width: 42px;
  height: 42px;
  margin: 0 auto 24px;
  color: #756e67;
}

.service-icon svg{
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3{
  margin: 0 0 20px;
  font-size: 17px;
  font-weight: 500;
  color: #645e59;
}

.service-card p{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #77716b;
}


/* =========================
   Booking Flow
========================= */

.booking-flow{
  position: relative;
  overflow: hidden;
  
}

.booking-flow::before{
  content: "BOOKING";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(76px, 11vw, 160px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(123,102,84,.045);
  white-space: nowrap;
  pointer-events: none;
}

.booking-flow .container{
  position: relative;
  z-index: 2;
}

.booking-flow__title{
  margin-bottom: 54px;
}

.booking-steps{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.booking-steps::before{
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 43px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123,102,84,.1), rgba(123,102,84,.48), rgba(123,102,84,.1));
  z-index: 0;
}

.booking-step{
  position: relative;
  z-index: 1;
  padding: 0 18px 8px;
  text-align: center;
}

.booking-step__icon{
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(123,102,84,.34);
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  color: #7b6654;
  box-shadow:
    0 18px 34px rgba(80,69,60,.08),
    inset 0 0 0 8px rgba(244,241,236,.62);
}

.booking-step__icon svg{
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-step__number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(123,102,84,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(123,102,84,.78);
}

.booking-step h3{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 500;
  color: #4d4741;
}

.booking-step p{
  max-width: 230px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.9;
  color: #77716b;
}


/* =========================
   Stylists
========================= */

.stylists{
  background:
    linear-gradient(180deg, #fbfaf7 0%, #f4f1ec 100%);
  position: relative;
  overflow: hidden;
}

.stylists::before{
  content: "STYLISTS";
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(76px, 11vw, 160px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(123, 102, 84, .045);
  white-space: nowrap;
  pointer-events: none;
}

.stylists .container{
  position: relative;
  z-index: 2;
}

.section-subtitle{
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(123, 102, 84, .78);
}

.stylist-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 26px;
  width: 100%;
  margin: 0 auto;
}

.stylist-card{
  position: relative;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(216, 209, 200, .9);
  padding: 14px 14px 22px;
  text-align: center;
  transition: .28s ease;
  overflow: hidden;
}

.stylist-card::before{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(123, 102, 84, .18);
  pointer-events: none;
  z-index: 2;
}

.stylist-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 42px rgba(80, 69, 60, .12);
}

.stylist-photo{
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 3.65;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 120px;
  background: #e9e3dc;
}

.stylist-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(60,50,42,.24));
  z-index: 1;
}

.stylist-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .35s ease;
}

.stylist-card:hover .stylist-photo img{
  transform: scale(1.045);
}

.stylist-info{
  position: relative;
  z-index: 3;
}

.area-tag{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(123, 102, 84, .35);
  border-radius: 99px;
  font-size: 11px;
  color: #7b6654;
  background: rgba(255,255,255,.6);
}

.stylist-card h3{
  margin: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  color: #252220;
  letter-spacing: .04em;
}

.stylist-card .role{
  margin: 9px 0 12px;
  font-size: 13px;
  color: #776f68;
}

.stylist-card .desc{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #7e7771;
}

/* =========================
   CTA
========================= */

.cta{
  width: 100%;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #f3eee7;
  isolation: isolate;
}

.cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/index/cta-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: .38;
  filter: none;
  transform: none;
  z-index: -3;
}

.cta::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(246,241,234,.28), rgba(246,241,234,.28)),
    linear-gradient(rgba(85,72,62,.22), rgba(85,72,62,.22));
  z-index: -2;
}

.cta__overlay{
  min-height: 280px;
  width: var(--container);
  margin: 0 auto;
  padding: 46px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta h2{
  margin: 0 0 14px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 10px rgba(65,55,47,.28);
}

.cta p{
  margin: 0 0 28px;
  font-size: 18px;
  color: rgba(255,255,255,.92);
  text-align: center;
  text-shadow: 0 2px 8px rgba(65,55,47,.24);
}

.cta .btn--light{
  position: relative;
  min-width: 178px;
  height: 48px;
  padding: 0 58px 0 50px;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: #5f4c3d;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;

  box-shadow:
    0 16px 34px rgba(65,55,47,.18),
    inset 0 0 0 1px rgba(255,255,255,.52);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cta .btn--light::before{
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(123,102,84,.18);
  border-radius: 999px;
  pointer-events: none;
}

.cta .btn--light::after{
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);

  display: block;
  border-radius: 50%;
  background-color: #7b6654;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 15px 15px;

  font-size: 0;
  line-height: 0;
  transition: .28s ease;
}

.cta .btn--light:hover{
  background: #fff;
  color: #4b3b30;
  transform: translateY(-3px);
  box-shadow:
    0 22px 42px rgba(65,55,47,.24),
    inset 0 0 0 1px rgba(255,255,255,.65);
}

.cta .btn--light:hover::after{
  right: 6px;
  background-color: #5f4c3d;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 5l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================
   Home Product Promotion
========================= */

.home-product{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 86% 28%, rgba(123,102,84,.08) 0%, rgba(123,102,84,0) 34%),
    linear-gradient(180deg, #f4f1ec 0%, #fbfaf7 100%);
}

.home-product::before{
  content: "HOME CARE";
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(72px, 11vw, 158px);
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(123,102,84,.045);
  white-space: nowrap;
  pointer-events: none;
}

.home-product .container{
  position: relative;
  z-index: 2;
}

.home-product__panel{
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 560px);
  gap: clamp(46px, 6vw, 88px);
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(216,209,200,.92);
  background: rgba(255,255,255,.5);
  box-shadow: 0 28px 62px rgba(80,69,60,.09);
  position: relative;
}

.home-product__panel::before{
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(123,102,84,.14);
  pointer-events: none;
}

.home-product__image{
  position: relative;
  padding: 18px 18px 0 0;
  isolation: isolate;
}

.home-product__image::before{
  content: "";
  position: absolute;
  right: -18px;
  top: -18px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(123,102,84,.28);
  border-radius: 50%;
  z-index: -2;
}

.home-product__image::after{
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  right: 0;
  bottom: -18px;
  border: 1px solid rgba(123,102,84,.28);
  border-radius: 0 90px 0 90px;
  z-index: -1;
}

.home-product__image img{
  width: 100%;
  aspect-ratio: 760 / 560;
  border-radius: 0 90px 0 90px;
  box-shadow: 0 24px 48px rgba(80,69,60,.15);
}

.home-product__badge{
  position: absolute;
  left: 34px;
  top: 34px;
  z-index: 3;
  min-height: 32px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  background: rgba(109,89,72,.78);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.home-product__content{
  position: relative;
  z-index: 2;
}

.home-product__content h2{
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .04em;
  color: #2f2a26;
}

.home-product__price{
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 26px;
  padding: 14px 22px;
  border: 1px solid rgba(123,102,84,.28);
  background: rgba(255,255,255,.58);
  color: #5f4c3d;
}

.home-product__price span{
  align-self: center;
  font-size: 13px;
  letter-spacing: .12em;
  color: #7b6654;
}

.home-product__price strong{
  font-family: var(--font-serif);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: .02em;
  color: #4b3b30;
}

.home-product__price em{
  margin-bottom: 4px;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 18px;
  color: #7b6654;
}

.home-product__lead{
  margin: 0 0 30px;
  font-size: 15px;
  line-height: 2.05;
  color: #77716b;
}

.home-product__blocks{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.home-product__block{
  padding: 24px 22px;
  border: 1px solid rgba(216,209,200,.9);
  background: rgba(255,255,255,.46);
  text-align: center;
}

.home-product__block h3{
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 500;
  color: #4d4741;
  text-align: center;
}

.home-product__block ul{
  list-style: none;
  padding: 0 0 0 10px;
  margin: 0 auto;
  width: 210px;
  max-width: 100%;
}

.home-product__block li{
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 8px;
  align-items: start;
  margin-bottom: 10px;
  padding-left: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
  color: #736c66;
}

.home-product__block li:last-child{
  margin-bottom: 0;
}

.home-product__block li::before{
  content: "✓";
  display: block;
  text-align: center;
  color: #7b6654;
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.7;
}

.home-product__features{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.home-product__features span{
  min-height: 30px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(123,102,84,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  font-size: 12px;
  color: #6f665f;
}

.home-product__btn{
  position: relative;
  min-width: 190px;
  height: 48px;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(80,69,60,.14);
}

/* =========================
   Footer
========================= */

.footer{
  background: var(--paper);
  min-height: 50px;
}

.footer__inner{
  width: var(--container);
  min-height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright{
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #5e5853;
  font-weight: 700;
  white-space: nowrap;
}

/* =========================
   Tablet
========================= */

@media (min-width: 1600px){
  :root{
    --container: min(1500px, calc(100% - 120px));
  }

  .hero__copy{
    margin-right: 9vw;
  }
}

@media (max-width: 1180px){
  :root{
    --container: min(1000px, calc(100% - 64px));
  }

  .navbar{
    width: calc(100% - 52px);
  }

  .nav-menu{
    gap: 24px;
  }

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

  .brand span{
    font-size: 24px;
  }

  .hero__copy{
    width: min(560px, 50vw);
    margin-right: 3vw;
  }

  .about__grid{
    grid-template-columns: 360px 1fr;
    gap: 56px;
  }

  .service-grid{
    gap: 22px;
  }

  .service-card{
    padding: 36px 18px 30px;
  }

  .stylist-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .stylist-card h3{
    font-size: 26px;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 900px){
  :root{
    --header-h: 66px;
    --container: calc(100% - 44px);
  }

  .site-header{
    position: relative;
  }

  .navbar{
    width: calc(100% - 36px);
  }

  .brand{
    gap: 7px;
  }

  .brand-logo{
    width: 42px;
    height: 42px;
  }

  .brand span{
    font-size: 20px;
    letter-spacing: .06em;
  }

  .menu-toggle{
    display: block;
  }

  .nav-menu{
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100svh - var(--header-h));
    padding: 36px 34px;
    margin-left: 0;
    background: rgba(255,255,255,.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform .28s ease;
    border-top: 1px solid #eee;
  }

  .nav-open .nav-menu{
    transform: translateX(0);
  }

  .nav-menu a{
    width: 100%;
    max-width: 320px;
    padding: 18px 0;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #eee8df;
  }

  .book-btn{
    width: 100%;
    max-width: 320px;
    height: 46px;
    margin-top: 22px;
    border: 1px solid #8c8176 !important;
  }

  .hero{
    min-height: calc(100svh - var(--header-h));
  }

  .hero::before{
    background-position: 34% center;
  }

  .hero::after{
    background:
      linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.18)),
      linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.2));
  }

  .hero__inner{
    min-height: calc(100svh - var(--header-h));
    align-items: center;
    justify-content: center;
  }

  .hero__copy{
    width: min(540px, 100%);
    margin: 0 auto;
    padding: 40px 0;
    transform: none;
    text-align: center;
  }

  .eyebrow{
    font-size: 12px;
    letter-spacing: .18em;
    margin-bottom: 18px;
  }

  .eyebrow::after{
    display: none;
  }

  .hero h1{
    font-size: clamp(50px, 12vw, 74px);
    line-height: .95;
  }

  .hero__subtitle{
    margin: 22px 0 32px;
    font-size: 18px;
  }

  .section{
    padding: 76px 0;
  }

  .about__grid{
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__text{
    order: 1;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    padding: 0 4px;
  }

  .about__image{
    order: 2;
    width: 100%;
    margin-top: 8px;
  }

  .about .section-kicker{
    margin: 0 auto 28px;
    padding: 9px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    color: #7b6654;

    border: 1px solid rgba(123, 102, 84, .34);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    box-shadow: 0 12px 26px rgba(80, 69, 60, .07);
  }

  .about .section-kicker::before,
  .about .section-kicker::after{
    content: "";
    position: static;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: rgba(123, 102, 84, .55);
  }

  .about h2{
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .about h2::after{
    content: "";
    width: 42px;
    height: 1px;
    background: rgba(123, 102, 84, .55);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }

  .section-kicker{
    margin-bottom: 26px;
    font-size: 13px;
  }

  .section-kicker::after{
    display: none;
  }

  .services,
  .stylists,
  .about{
    padding: 76px 0;
  }

  .section-title{
    margin-bottom: 36px;
  }

  .section-title h2{
    font-size: 34px;
  }

  .service-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .service-card{
    min-height: 220px;
    padding: 36px 18px 30px;
  }



  .booking-flow{
    padding: 76px 0;
  }

  .booking-flow__title{
    margin-bottom: 40px;
  }

  .booking-steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .booking-steps::before{
    display: none;
  }

  .booking-step{
    padding: 30px 18px 26px;
    border: 1px solid rgba(216,209,200,.88);
    background: rgba(255,255,255,.42);
  }

  .booking-step__icon{
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
  }

  .booking-step__icon svg{
    width: 34px;
    height: 34px;
  }


  .stylist-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .stylist-card{
    padding: 12px 12px 20px;
  }

  .stylist-photo{
    aspect-ratio: 3 / 3.75;
    margin-bottom: 16px;
  }

  .stylist-card h3{
    font-size: 24px;
  }

  .stylist-card .role,
  .stylist-card .desc{
    font-size: 12px;
  }

  .cta,
  .cta__overlay{
    min-height: 250px;
  }

  .cta h2{
    font-size: 32px;
  }

  .cta p{
    font-size: 14px;
    line-height: 1.8;
  }

  .home-product{
    padding: 76px 0;
  }

  .home-product::before{
    top: 28px;
    font-size: 64px;
    letter-spacing: .04em;
  }

  .home-product__panel{
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 28px 22px 34px;
  }

  .home-product__image{
    order: 1;
  }

  .home-product__content{
    order: 2;
    text-align: center;
  }

  .home-product__content h2{
    font-size: 30px;
  }

  .home-product__lead{
    font-size: 14px;
    line-height: 1.9;
  }

  .home-product__blocks{
    grid-template-columns: 1fr;
    text-align: left;
  }

  .home-product__features{
    justify-content: center;
  }

  .home-product__price{
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px){
  :root{
    --header-h: 62px;
    --container: calc(100% - 32px);
  }

  .navbar{
    width: calc(100% - 28px);
  }

  .brand-logo{
    width: 38px;
    height: 38px;
  }

  .brand span{
    font-size: 17px;
    letter-spacing: .05em;
  }

  .menu-toggle{
    width: 34px;
    height: 34px;
  }

  .menu-toggle span{
    width: 24px;
  }

  .hero{
    min-height: calc(100svh - var(--header-h));
  }

  .hero::before{
    background-position: 32% center;
  }

  .hero__inner{
    min-height: calc(100svh - var(--header-h));
  }

  .hero__copy{
    padding: 34px 0;
  }

  .hero .btn--dark{
    min-width: 220px;
    height: 48px;
    padding: 0 56px 0 50px;
    font-size: 11px;
    letter-spacing: .11em;
  }

  .hero .btn--dark::after{
    width: 33px;
    height: 33px;
    right: 7px;
    background-size: 15px 15px;
  }

  .eyebrow{
    font-size: 10px;
    letter-spacing: .16em;
  }

  .hero h1{
    font-size: 46px;
  }

  .hero__subtitle{
    margin: 18px 0 28px;
    font-size: 16px;
  }

  .btn{
    min-width: 158px;
    height: 40px;
    padding: 0 24px;
    font-size: 12px;
  }

  .section,
  .services,
  .stylists,
  .about{
    padding: 64px 0;
  }

  .about__grid{
    gap: 34px;
  }

  .about .section-kicker{
    margin-bottom: 24px;
    padding: 8px 18px;
    font-size: 20px;
    letter-spacing: .2em;
  }

  .about h2{
    font-size: 23px;
    line-height: 1.65;
  }

  .about__image{
    margin-top: 2px;
  }

  .section-title{
    margin-bottom: 32px;
  }

  .section-title h2{
    font-size: 30px;
  }

  .services::before{
    top: 28px;
    font-size: 62px;
    letter-spacing: .04em;
  }

  .services .section-title{
    margin-bottom: 62px;
    padding: 18px 0 24px;
  }

  .services .section-title::before{
    min-height: 25px;
    padding: 0 14px;
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: .18em;
  }

  .services .section-title h2{
    padding: 0 42px;
    font-size: 30px;
    letter-spacing: .035em;
  }

  .services .section-title h2::before,
  .services .section-title h2::after{
    width: 28px;
  }

  .services .section-title span{
    width: 64px;
    margin-top: 18px;
  }

  .services .section-title span::after{
    top: 17px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .service-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card{
    min-height: auto;
    padding: 34px 22px 32px;
  }

  .service-icon{
    width: 40px;
    height: 40px;
    margin-bottom: 22px;
  }

  .service-card h3{
    font-size: 17px;
    margin-bottom: 14px;
  }

  .service-card p{
    font-size: 13px;
  }



  .booking-flow{
    padding: 64px 0;
  }

  .booking-flow::before{
    top: 28px;
    font-size: 62px;
    letter-spacing: .04em;
  }

  .booking-flow__title{
    margin-bottom: 32px;
  }

  .booking-steps{
    display: block;
    padding-left: 28px;
  }

  .booking-steps::before{
    display: block;
    left: 8px;
    right: auto;
    top: 11px;
    bottom: 11px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(123,102,84,.08), rgba(123,102,84,.5), rgba(123,102,84,.08));
  }

  .booking-step{
    position: relative;
    min-height: 112px;
    padding: 22px 18px 22px 56px;
    margin-bottom: 16px;
    text-align: left;
  }

  .booking-step:last-child{
    margin-bottom: 0;
  }

  .booking-step__icon{
    position: absolute;
    left: -28px;
    top: 24px;
    width: 56px;
    height: 56px;
    margin: 0;
    box-shadow:
      0 12px 24px rgba(80,69,60,.08),
      inset 0 0 0 6px rgba(244,241,236,.66);
  }

  .booking-step__icon svg{
    width: 26px;
    height: 26px;
  }

  .booking-step__number{
    min-height: 21px;
    padding: 0 10px;
    margin-bottom: 9px;
    font-size: 9px;
  }

  .booking-step h3{
    margin-bottom: 8px;
    font-size: 17px;
  }

  .booking-step p{
    max-width: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.75;
  }


  .stylists{
    padding: 68px 0;
  }

  .stylists::before{
    top: 26px;
    font-size: 64px;
    letter-spacing: .04em;
  }

  .stylists .section-title{
    margin-bottom: 34px;
  }

  .section-subtitle{
    font-size: 10px;
    letter-spacing: .18em;
  }

  .stylist-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .stylist-card{
    padding: 9px 9px 16px;
  }

  .stylist-card::before{
    inset: 7px;
  }

  .stylist-photo{
    aspect-ratio: 3 / 3.9;
    border-radius: 90px;
    margin-bottom: 13px;
  }

  .area-tag{
    min-height: 21px;
    padding: 0 9px;
    margin-bottom: 9px;
    font-size: 10px;
  }

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

  .stylist-card .role{
    margin: 7px 0 8px;
    font-size: 11px;
  }

  .stylist-card .desc{
    font-size: 11px;
    line-height: 1.65;
  }

  .cta{
    min-height: 230px;
  }

  .cta::before{
    background-size: cover;
    background-position: center center;
    opacity: .34;
    filter: none;
    transform: none;
  }

  .cta::after{
    background:
      linear-gradient(rgba(246,241,234,.34), rgba(246,241,234,.34)),
      linear-gradient(rgba(85,72,62,.24), rgba(85,72,62,.24));
  }

  .cta__overlay{
    min-height: 230px;
    padding: 38px 0;
  }

  .cta h2{
    font-size: 27px;
    line-height: 1.45;
  }

  .cta p{
    max-width: 280px;
    font-size: 13px;
    line-height: 1.8;
  }

  .cta .btn--light{
    min-width: 168px;
    height: 46px;
    padding: 0 54px 0 50px;
    font-size: 11px;
  }

  .cta .btn--light::after{
    width: 32px;
    height: 32px;
    right: 7px;
    background-size: 15px 15px;
  }

  .footer{
    min-height: 54px;
  }

  .footer__inner{
    min-height: 54px;
  }

  .copyright{
    font-size: 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
  }

  .home-product{
    padding: 64px 0;
  }

  .home-product__panel{
    padding: 20px 16px 30px;
  }

  .home-product__panel::before{
    inset: 9px;
  }

  .home-product__image{
    padding: 10px 10px 0 0;
  }

  .home-product__image::before{
    width: 100px;
    height: 100px;
    right: -10px;
    top: -10px;
  }

  .home-product__image::after{
    left: 10px;
    top: 10px;
    bottom: -10px;
    border-radius: 0 58px 0 58px;
  }

  .home-product__image img{
    border-radius: 0 58px 0 58px;
    aspect-ratio: 4 / 3;
  }

  .home-product__badge{
    left: 20px;
    top: 20px;
    min-height: 28px;
    padding: 0 13px;
    font-size: 9px;
    letter-spacing: .16em;
  }

  .home-product__content h2{
    font-size: 25px;
    line-height: 1.55;
  }

  .home-product__price{
    padding: 12px 16px;
  }

  .home-product__price span{
    font-size: 12px;
  }

  .home-product__price strong{
    font-size: 42px;
  }

  .home-product__block{
    padding: 22px 18px;
  }

  .home-product__features span{
    font-size: 11px;
  }

  .home-product__btn{
    width: 100%;
    max-width: 240px;
  }
}

@media (max-width: 380px){
  .brand span{
    font-size: 15px;
  }

  .brand-logo{
    width: 35px;
    height: 35px;
  }

  .hero h1{
    font-size: 40px;
  }

  .hero__subtitle{
    font-size: 15px;
  }

  .hero .btn--dark{
    min-width: 205px;
    height: 46px;
    padding: 0 52px 0 22px;
    font-size: 10px;
  }

  .hero .btn--dark::after{
    width: 31px;
    height: 31px;
  }

  .btn{
    min-width: 148px;
    padding: 0 20px;
    font-size: 11px;
  }

  .section-title h2{
    font-size: 28px;
  }



  .booking-steps{
    padding-left: 24px;
  }

  .booking-step{
    padding: 20px 16px 20px 48px;
  }

  .booking-step__icon{
    left: -24px;
    width: 50px;
    height: 50px;
  }

  .booking-step__icon svg{
    width: 24px;
    height: 24px;
  }


  .stylist-grid{
    gap: 16px 12px;
  }

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

  .stylist-card .desc{
    font-size: 10.5px;
  }
}

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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  position: relative;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.order-page,
.order-hero,
.order-section,
.catalog-section,
.gallery-section,
.gallery-wrapper,
.gallery-container,
.menu-section {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.order-hero {
  width: 100%;
  max-width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
}


.hero-actions {
  flex-wrap: wrap;
}

.hero-actions a,
.hero-actions button {
  max-width: 100%;
}

.menu-grid,
.product-grid,
.catalog-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.filter-buttons,
.category-tabs {
  max-width: 100%;
  flex-wrap: wrap;
}