:root {
  --ink: #181613;
  --ink-soft: #2b2823;
  --ivory: #f3efe7;
  --paper: #faf8f3;
  --line: rgba(24, 22, 19, 0.18);
  --gold: #b7904f;
  --gold-light: #d5bd8c;
  --blush: #cfa296;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
a {
  cursor: default;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
  cursor: pointer;
}

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

::selection {
  background: var(--gold-light);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 0 4.2vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(250, 248, 243, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand-link {
  justify-self: start;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark__monogram {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: -1px;
}

.brand-mark__name {
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 0.95;
}

.brand-mark__name i {
  margin-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 8px;
  font-style: normal;
  font-weight: 560;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-mark--light .brand-mark__monogram {
  border-color: rgba(255, 255, 255, 0.65);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-book {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-book span {
  margin-left: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 880px;
  background: var(--paper);
}

.hero__copy {
  display: flex;
  min-width: 0;
  padding: 174px 7vw 68px 7vw;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: flex;
  justify-content: space-between;
  max-width: 390px;
  margin-bottom: 52px;
  color: #635e56;
}

.hero h1,
.section-heading h2,
.salon-section h2,
.work-section h2,
.visit-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 580px;
  font-size: clamp(64px, 6.6vw, 112px);
  line-height: 0.82;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.hero__intro {
  max-width: 440px;
  margin: 42px 0 0;
  color: #5b564f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.55;
}

.hero__actions,
.visit-section__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.button--dark {
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: transparent;
  color: var(--ink);
}

.button--gold {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
}

.button--gold:hover {
  background: transparent;
  color: var(--white);
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 10px;
}

.text-link--light {
  color: var(--white);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: auto;
  padding-top: 70px;
}

.hero__trust > div {
  display: flex;
  min-width: 94px;
  padding-right: 22px;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.hero__trust strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.stars {
  margin-top: 7px;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.hero__trust p {
  margin: 0;
  color: #6a655e;
  font-size: 10px;
  letter-spacing: 0.06em;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 760px;
}

.hero__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 13, 10, 0.1), transparent 36%),
    linear-gradient(90deg, rgba(24, 22, 19, 0.1), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-note {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: flex;
  width: 160px;
  height: 160px;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--blush);
  color: var(--ink);
}

.hero__image-note span {
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__image-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 400;
}

.service-section {
  padding: 124px 7vw 112px;
}

.section-heading--services {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 7vw;
  align-items: end;
  padding-bottom: 72px;
}

.section-heading h2,
.salon-section h2,
.work-section h2,
.visit-section h2 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: 0.98;
}

.section-heading--services > p:last-child {
  max-width: 330px;
  margin: 0;
  color: #615c55;
  font-size: 14px;
  line-height: 1.75;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(220px, 1fr) 160px 90px 24px;
  min-height: 100px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 180ms ease,
    padding 180ms ease;
}

.service-row:hover {
  padding: 0 18px;
  background: var(--paper);
}

.service-row__index,
.service-row__detail {
  color: #777068;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-row__name,
.service-row__price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.service-row__price {
  text-align: right;
}

.service-row__arrow {
  text-align: right;
}

.menu-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 34px;
  color: #5e5952;
  font-size: 12px;
}

.menu-note p {
  margin: 0;
}

.menu-note a {
  color: var(--ink);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-note a span {
  margin-left: 12px;
}

.salon-section {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 850px;
  background: var(--ink);
  color: var(--white);
}

.salon-section__image {
  position: relative;
  overflow: hidden;
  margin: 46px 0 46px 4vw;
}

.salon-section__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 8, 6, 0.24), transparent 45%);
  content: "";
}

.salon-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vertical-note {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 26px;
  color: var(--white);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.salon-section__copy {
  display: flex;
  padding: 100px 7vw 86px;
  flex-direction: column;
  justify-content: center;
}

.salon-section__copy .eyebrow {
  margin-bottom: 34px;
  color: var(--gold-light);
}

.salon-section__lead {
  margin: 34px 0 54px;
  color: #c6c0b8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.principles > div {
  display: grid;
  grid-template-columns: 36px 135px 1fr;
  gap: 12px;
  padding: 25px 0;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.principles span,
.principles h3,
.principles p {
  margin: 0;
}

.principles span {
  color: var(--gold);
  font-size: 9px;
}

.principles h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
}

.principles p {
  color: #aaa49c;
  font-size: 11px;
  line-height: 1.55;
}

.work-section {
  padding: 130px 4vw 120px;
  overflow: hidden;
}

.work-section__heading {
  display: flex;
  padding: 0 3vw 70px;
  align-items: end;
  justify-content: space-between;
}

.work-section__heading h2 {
  max-width: 610px;
  text-align: right;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr 1.2fr;
  gap: 18px;
  align-items: end;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition:
    filter 260ms ease,
    transform 400ms ease;
}

.gallery figure:hover img {
  filter: saturate(1);
  transform: scale(1.015);
}

.gallery__feature img {
  aspect-ratio: 1 / 1;
}

.gallery__detail {
  margin-bottom: 7vw !important;
}

.gallery__detail img {
  aspect-ratio: 1 / 1;
}

.gallery__space img {
  aspect-ratio: 1.2 / 1;
}

.gallery figcaption {
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery figcaption::after {
  color: var(--gold);
  content: "JB / 26";
}

.work-section__social {
  display: block;
  width: max-content;
  margin: 64px auto 0;
}

.review-section {
  display: grid;
  grid-template-columns: 0.7fr 2fr 0.7fr;
  gap: 7vw;
  padding: 120px 7vw;
  align-items: start;
  background: var(--blush);
}

.review-section__rating {
  display: flex;
  flex-direction: column;
}

.review-section__rating span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
}

.review-section__rating span:last-child {
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.review-section blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.6vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.review-section > p {
  margin: 16px 0 0;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 8vw;
  padding: 130px 8vw;
  background: var(--ink-soft);
  color: var(--white);
}

.visit-section__intro .eyebrow {
  margin-bottom: 34px;
  color: var(--gold-light);
}

.visit-section__intro > p:not(.eyebrow) {
  max-width: 500px;
  margin: 32px 0 0;
  color: #bdb7af;
  font-size: 14px;
  line-height: 1.75;
}

.visit-card {
  align-self: stretch;
  padding: 38px 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-card__address {
  display: flex;
  padding-bottom: 34px;
  align-items: start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-card__address > span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.visit-card address {
  color: #d1ccc5;
  font-size: 12px;
  font-style: normal;
  line-height: 1.65;
  text-align: right;
}

.hours {
  padding-top: 22px;
}

.hours > div {
  display: flex;
  padding: 9px 0;
  justify-content: space-between;
  color: #bbb5ad;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hours > div:last-child {
  color: var(--white);
}

.site-footer {
  padding: 64px 6vw 24px;
  background: #11100e;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 80px;
  align-items: start;
}

.site-footer__top > p {
  margin: 0;
  color: #878179;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
}

.footer-book {
  justify-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.footer-book span {
  margin-left: 22px;
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  padding-top: 22px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #6f6a63;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__bottom > div {
  display: flex;
  gap: 26px;
}

.mobile-book {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 50% 50%;
  }

  .hero__copy {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .salon-section {
    grid-template-columns: 52% 48%;
  }

  .salon-section__copy {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  .principles > div {
    grid-template-columns: 30px 115px 1fr;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    position: absolute;
    min-height: 74px;
    padding: 0 20px;
  }

  .brand-mark__monogram {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .brand-mark__name {
    font-size: 17px;
  }

  .header-book {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }

  .hero__image {
    height: 63vh;
    min-height: 500px;
  }

  .hero__image::after {
    background: linear-gradient(180deg, rgba(15, 13, 10, 0.24), transparent 30%);
  }

  .hero__image-note {
    width: 126px;
    height: 126px;
    padding: 19px;
  }

  .hero__image-note strong {
    font-size: 25px;
  }

  .hero__copy {
    padding: 70px 23px 62px;
  }

  .hero .eyebrow {
    margin-bottom: 34px;
  }

  .hero h1 {
    font-size: clamp(62px, 18vw, 88px);
  }

  .hero__intro {
    margin-top: 32px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .text-link {
    width: max-content;
  }

  .hero__trust {
    margin-top: 58px;
    padding-top: 0;
  }

  .service-section {
    padding: 82px 23px 74px;
  }

  .section-heading--services {
    display: block;
    padding-bottom: 48px;
  }

  .section-heading h2,
  .salon-section h2,
  .work-section h2,
  .visit-section h2 {
    margin-top: 20px;
    font-size: clamp(45px, 13vw, 64px);
  }

  .section-heading--services > p:last-child {
    margin-top: 28px;
  }

  .service-row {
    grid-template-columns: 38px 1fr auto;
    min-height: 86px;
    padding: 14px 0;
  }

  .service-row:hover {
    padding: 14px 8px;
  }

  .service-row__name {
    font-size: 19px;
  }

  .service-row__detail {
    display: none;
  }

  .service-row__price {
    font-size: 19px;
  }

  .service-row__arrow {
    display: none;
  }

  .menu-note {
    align-items: flex-start;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.6;
  }

  .salon-section {
    display: block;
    min-height: 0;
    padding-top: 23px;
  }

  .salon-section__image {
    height: 57vh;
    min-height: 440px;
    margin: 0 23px;
  }

  .salon-section__copy {
    padding: 74px 23px 78px;
  }

  .salon-section__lead {
    margin: 30px 0 44px;
  }

  .principles > div {
    grid-template-columns: 32px 1fr;
  }

  .principles p {
    grid-column: 2;
  }

  .work-section {
    padding: 86px 23px 80px;
  }

  .work-section__heading {
    display: block;
    padding: 0 0 48px;
  }

  .work-section__heading h2 {
    text-align: left;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery__feature {
    grid-column: 1 / -1;
  }

  .gallery__detail {
    margin-bottom: 0 !important;
  }

  .gallery__space img {
    aspect-ratio: 1 / 1;
  }

  .gallery figcaption::after {
    display: none;
  }

  .work-section__social {
    margin-top: 48px;
    line-height: 1.5;
    text-align: center;
  }

  .review-section {
    display: block;
    padding: 80px 23px;
  }

  .review-section__rating {
    margin-bottom: 36px;
  }

  .review-section > p {
    margin-top: 34px;
  }

  .visit-section {
    display: block;
    padding: 82px 23px 90px;
  }

  .visit-section__actions {
    margin-bottom: 64px;
    align-items: flex-start;
    flex-direction: column;
  }

  .visit-card {
    padding: 28px 23px;
  }

  .visit-card__address {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .visit-card address {
    text-align: left;
  }

  .site-footer {
    padding: 56px 23px 96px;
  }

  .site-footer__top {
    display: flex;
    padding-bottom: 60px;
    flex-direction: column;
    gap: 44px;
  }

  .footer-book {
    justify-self: start;
    font-size: 25px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-book {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: block;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  }

  .mobile-book a {
    display: flex;
    min-height: 58px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    background: var(--gold-light);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
