:root {
  --ink: #0b0b0b;
  --ink-soft: #151412;
  --gold: #b58a49;
  --gold-light: #d9b36d;
  --ivory: #f4efe6;
  --paper: #fbf8f2;
  --taupe: #9a8977;
  --white: #fffdf8;
  --line-dark: rgba(11, 11, 11, 0.16);
  --line-gold: rgba(181, 138, 73, 0.72);
  --font-display: "Bodoni MT", Didot, "Times New Roman", serif;
  --font-ui: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --content: min(92vw, 1540px);
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  padding: 0 clamp(22px, 4vw, 66px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(8, 8, 8, 0.68));
  border-bottom: 1px solid rgba(181, 138, 73, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-copy small,
.footer-brand span {
  color: rgba(244, 239, 230, 0.7);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 54px);
}

.site-nav a {
  position: relative;
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 13px 21px;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: var(--ivory);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  color: var(--ivory);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.73) 36%, rgba(5, 5, 5, 0.08) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.52), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin-inline: auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--header-h);
}

.eyebrow,
.brand-kicker {
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 45px;
  height: 1px;
  margin: 0 14px 4px 0;
  background: currentColor;
}

.hero h1,
.services-heading h2,
.gallery-intro h2,
.reviews-copy h2,
.visit-content h2,
.closing-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(58px, 6.2vw, 110px);
}

.hero h1 em,
.services-heading h2 em,
.gallery-intro h2 em,
.visit-content h2 em,
.closing-content h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-services {
  margin: 28px 0 34px;
  font-size: clamp(17px, 1.35vw, 23px);
  letter-spacing: 0.18em;
}

.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 650;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.button-gold:hover {
  background: var(--ivory);
}

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

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

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

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

.button-large {
  min-width: 360px;
  min-height: 70px;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
}

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

.hero-ornament {
  position: absolute;
  z-index: 2;
  top: 15%;
  right: -35px;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.66;
}

.hero-ornament::before,
.hero-ornament::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-ornament::after {
  inset: 36px;
}

.hero-ornament span {
  font-family: var(--font-display);
  font-size: 46px;
  font-style: italic;
}

.services-section {
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(310px, 31vw) 1fr;
  color: var(--ink);
  background: var(--paper);
}

.services-portrait {
  position: relative;
  min-height: 980px;
  overflow: hidden;
}

.services-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.services-portrait::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.86), transparent);
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 11%;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.22em;
  line-height: 1.55;
  text-transform: uppercase;
}

.portrait-caption::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 20px;
  background: var(--gold);
}

.services-content {
  padding: clamp(70px, 7vw, 118px) clamp(34px, 5.8vw, 104px) 70px;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-gold);
}

.services-heading h2 {
  font-size: clamp(56px, 5.5vw, 100px);
}

.services-heading p {
  margin: 0 0 8px;
  font-size: 13px;
  letter-spacing: 0.28em;
  line-height: 1.75;
  text-transform: uppercase;
}

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

.service-item {
  display: grid;
  grid-template-columns: minmax(130px, 48%) 1fr;
  align-items: center;
  gap: 22px;
  min-height: 162px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-gold);
}

.service-item img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04);
}

.service-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 400;
}

.service-item p {
  max-width: 20ch;
  margin: 0;
  color: #35312c;
  font-size: 14px;
  line-height: 1.45;
}

.services-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-top: 30px;
}

.services-footer p {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
  font-size: 13px;
}

.services-footer strong {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
}

.gallery-section {
  min-height: 980px;
  display: grid;
  grid-template-columns: 1.05fr 0.83fr 1fr 0.34fr;
  grid-template-rows: 0.58fr 0.7fr;
  gap: 18px;
  padding: 70px clamp(24px, 3.3vw, 58px) 52px;
  color: var(--ivory);
  background:
    radial-gradient(circle at 45% 30%, rgba(181, 138, 73, 0.08), transparent 32%),
    var(--ink);
}

.gallery-intro {
  align-self: start;
  padding-right: 26px;
}

.gallery-intro h2 {
  font-size: clamp(54px, 5vw, 88px);
  line-height: 0.9;
}

.gallery-intro h2 em {
  display: inline-block;
  padding-bottom: 8px;
  font-style: italic;
}

.gallery-intro > p:last-child {
  max-width: 26ch;
  margin: 28px 0 0;
  color: rgba(244, 239, 230, 0.78);
}

.gallery-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-gold);
}

.gallery-card > a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(0deg, rgba(4, 4, 4, 0.7), transparent);
}

.gallery-card figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  pointer-events: none;
}

.gallery-card figcaption span {
  width: 50px;
  height: 1px;
  background: currentColor;
}

.gallery-color {
  grid-column: 1;
  grid-row: 2;
}

.gallery-cut {
  grid-column: 2;
  grid-row: 1 / 3;
}

.gallery-cut img {
  object-position: center;
}

.gallery-updo img {
  object-position: 62% center;
}

.gallery-nails {
  grid-column: 3;
  grid-row: 1;
}

.gallery-updo {
  grid-column: 3;
  grid-row: 2;
}

.gallery-aside {
  grid-column: 4;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 12px;
  text-align: center;
  border-left: 1px solid var(--line-gold);
}

.gallery-aside img {
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.gallery-aside p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.34em;
  line-height: 2.25;
  text-transform: uppercase;
}

.gallery-aside .text-link {
  margin-top: auto;
  font-size: 12px;
}

.reviews-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 90px clamp(28px, 7vw, 120px) 60px;
  background: var(--paper);
}

.reviews-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.reviews-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 58%;
  background: linear-gradient(90deg, var(--paper), transparent 62%);
}

.reviews-top {
  position: relative;
  z-index: 2;
  width: min(68%, 980px);
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 62px;
}

.reviews-copy {
  padding-right: 56px;
  border-right: 1px solid var(--line-dark);
}

.reviews-copy .eyebrow {
  margin-bottom: 18px;
  color: var(--taupe);
}

.reviews-copy h2 {
  font-size: clamp(54px, 5vw, 88px);
}

.reviews-copy > p:last-child {
  max-width: 46ch;
  margin: 24px 0 0;
  color: #5f574e;
}

.rating {
  align-self: center;
}

.rating > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating strong {
  font-family: var(--font-display);
  font-size: clamp(78px, 8vw, 132px);
  font-weight: 400;
  line-height: 0.8;
}

.rating span {
  color: var(--gold);
  font-size: 58px;
}

.rating p {
  margin: 20px 0;
  font-size: 20px;
}

.quote-panel {
  position: relative;
  z-index: 3;
  width: min(91%, 1380px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  padding: 54px 66px;
  color: var(--ivory);
  background: rgba(11, 11, 11, 0.97);
  border: 1px solid var(--gold);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.quote-panel blockquote {
  margin: 0;
  padding: 0 40px;
  border-right: 1px solid rgba(181, 138, 73, 0.58);
}

.quote-panel blockquote:first-child {
  padding-left: 0;
}

.quote-panel blockquote:last-child {
  padding-right: 0;
  border-right: 0;
}

.quote-panel blockquote > span {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 0.7;
}

.quote-panel blockquote p {
  min-height: 90px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.14;
}

.quote-panel cite {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
}

.visit-section {
  min-height: 900px;
  display: grid;
  grid-template-columns: 1.03fr 1fr;
  color: var(--ivory);
  background: var(--ink);
}

.map-panel {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.91) contrast(1.28) brightness(0.72) sepia(0.28);
}

.map-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.1), rgba(11, 11, 11, 0.25));
  border-right: 1px solid var(--gold);
}

.map-panel > p {
  position: absolute;
  z-index: 2;
  left: 9%;
  bottom: 8%;
  max-width: 16ch;
  margin: 0;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.visit-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(34px, 5vw, 90px);
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.98), rgba(11, 11, 11, 0.72)),
    url("assets/salon-interior.webp") center / cover;
}

.visit-content h2 {
  font-size: clamp(64px, 6.6vw, 112px);
  line-height: 0.86;
}

.visit-content h2 em {
  display: inline-block;
  padding-bottom: 10px;
}

.visit-tagline {
  margin: 28px 0 38px;
  color: rgba(244, 239, 230, 0.74);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.visit-details {
  display: grid;
  gap: 26px;
}

.detail-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
}

.detail-row > p {
  margin: 0;
  font-size: 20px;
}

.detail-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 24px;
}

.hours {
  width: min(100%, 430px);
  margin: 0;
}

.hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.hours dt,
.hours dd {
  margin: 0;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 36px;
  margin: 34px 0 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(181, 138, 73, 0.25);
  border-bottom: 1px solid rgba(181, 138, 73, 0.25);
  color: rgba(244, 239, 230, 0.78);
  list-style: none;
  font-size: 13px;
}

.amenities li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 10px 2px 0;
  background: var(--gold);
  transform: rotate(45deg);
}

.visit-actions .button {
  min-width: 190px;
}

.closing-section {
  position: relative;
  min-height: 710px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ivory);
  text-align: center;
  background: var(--ink);
}

.closing-section > img:not(.closing-logo),
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-section > img:not(.closing-logo) {
  object-fit: cover;
}

.closing-shade {
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0.35) 50%, rgba(8, 8, 8, 0.78));
}

.closing-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(92%, 1280px);
}

.closing-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.closing-content h2 {
  font-size: clamp(58px, 7vw, 118px);
  line-height: 0.9;
}

.closing-content h2 em {
  display: inline-block;
  padding-bottom: 12px;
  font-style: italic;
}

.closing-content > p {
  margin: 28px 0 30px;
  font-size: clamp(16px, 1.6vw, 24px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr 0.75fr 0.65fr 0.75fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 36px clamp(24px, 4vw, 70px);
  color: var(--ivory);
  background: #080808;
  border-top: 1px solid var(--gold);
  font-size: 13px;
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.site-footer address {
  color: rgba(244, 239, 230, 0.76);
  font-style: normal;
}

.site-footer > a:not(.footer-brand) {
  padding: 12px 0;
  border-left: 1px solid rgba(181, 138, 73, 0.54);
  text-align: center;
}

.site-footer > a:not(.footer-brand):hover {
  color: var(--gold-light);
}

.copyright {
  margin: 0;
  color: rgba(244, 239, 230, 0.54);
  font-size: 9px;
  letter-spacing: 0.13em;
  line-height: 1.8;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--gold-light);
  border: 1px solid rgba(11, 11, 11, 0.25);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  font-size: 13px;
  font-weight: 700;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@media (max-width: 1180px) {
  :root { --header-h: 76px; }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item img {
    height: 150px;
  }

  .gallery-section {
    grid-template-columns: 1fr 0.9fr 1fr;
  }

  .gallery-aside {
    display: none;
  }

  .quote-panel {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  }

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

@media (max-width: 820px) {
  :root { --header-h: 70px; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px;
    background: rgba(8, 8, 8, 0.98);
    transform: translateX(100%);
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .site-nav a {
    font-family: var(--font-display);
    font-size: 38px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.2) 32%, rgba(5, 5, 5, 0.94) 78%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.52), transparent);
  }

  .hero-content {
    min-height: 820px;
    justify-content: flex-end;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .hero-ornament {
    top: 16%;
    right: -60px;
    width: 140px;
    height: 140px;
  }

  .hero-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .services-section {
    display: block;
  }

  .services-portrait {
    min-height: 520px;
  }

  .services-content {
    padding: 64px 22px;
  }

  .services-heading {
    display: block;
  }

  .services-heading h2 {
    font-size: clamp(50px, 13vw, 72px);
  }

  .services-heading p {
    margin-top: 26px;
  }

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

  .service-item {
    grid-template-columns: 44% 1fr;
  }

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

  .gallery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 360px 360px;
    min-height: auto;
    padding: 60px 18px;
  }

  .gallery-intro {
    grid-column: 1 / -1;
  }

  .gallery-color {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-cut {
    grid-column: 2;
    grid-row: 2 / 4;
  }

  .gallery-nails {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-updo {
    display: none;
  }

  .reviews-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .reviews-image {
    width: 100%;
    height: 410px;
    opacity: 0.28;
  }

  .reviews-section::after {
    width: 100%;
    height: 460px;
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.28), var(--paper));
  }

  .reviews-top {
    width: 100%;
    display: block;
  }

  .reviews-copy {
    padding: 0 0 38px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .rating {
    padding-top: 34px;
  }

  .quote-panel {
    grid-template-columns: 1fr;
    margin-top: 48px;
    padding: 34px 28px;
  }

  .quote-panel blockquote,
  .quote-panel blockquote:first-child,
  .quote-panel blockquote:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(181, 138, 73, 0.48);
  }

  .quote-panel blockquote:last-child {
    border-bottom: 0;
  }

  .quote-panel blockquote p {
    min-height: 0;
  }

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

  .map-panel {
    min-height: 480px;
  }

  .visit-content {
    padding: 68px 22px;
  }

  .visit-content h2 {
    font-size: clamp(58px, 15vw, 86px);
  }

  .closing-section {
    min-height: 720px;
  }

  .closing-content h2 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .button-large {
    min-width: 0;
    width: min(100%, 360px);
  }

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

  .footer-brand,
  .site-footer address,
  .copyright {
    grid-column: 1 / -1;
  }

  .site-footer > a:not(.footer-brand) {
    border-left: 0;
    border-top: 1px solid rgba(181, 138, 73, 0.34);
  }

  .floating-whatsapp {
    display: flex;
  }
}

@media (max-width: 520px) {
  .hero h1,
  .services-heading h2 {
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 1;
  }

  .visit-content h2,
  .closing-content h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .gallery-intro h2 {
    font-size: clamp(40px, 11.5vw, 54px);
  }

  .hero-services {
    letter-spacing: 0.09em;
  }

  .button {
    width: 100%;
  }

  .service-item {
    grid-template-columns: 1fr;
  }

  .service-item img {
    height: 190px;
  }

  .gallery-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(4, 390px);
  }

  .gallery-section > * {
    min-width: 0;
  }

  .gallery-color,
  .gallery-cut,
  .gallery-nails,
  .gallery-updo {
    display: block;
    grid-column: 1;
  }

  .gallery-color { grid-row: 2; }
  .gallery-cut { grid-row: 3; }
  .gallery-nails { grid-row: 4; }
  .gallery-updo { grid-row: 5; }

  .detail-row {
    grid-template-columns: 1fr;
  }

  .hours > div {
    gap: 12px;
  }

  .visit-actions {
    flex-direction: column;
  }

  .visit-actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .site-footer address,
  .copyright {
    grid-column: 1;
  }
}

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

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

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

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #080808;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
