:root {
  --ink: #171918;
  --green: #173c31;
  --green-light: #315c4d;
  --paper: #f5f3ee;
  --white: #ffffff;
  --wood: #a06f4f;
  --brass: #b59459;
  --line: rgba(23, 25, 24, 0.18);
  --display: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.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: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr auto;
  align-items: center;
  gap: 2.2rem;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: block;
}

.brand img {
  width: min(430px, 100%);
  height: 74px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2.2rem);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
}

.lang-switcher button,
.lang-switcher a {
  padding: 0.3rem 0.15rem;
  color: rgba(255, 255, 255, 0.54);
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.lang-switcher button.active,
.lang-switcher a.active {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 92px);
  display: grid;
  grid-template-columns: 54% 46%;
  background: var(--ink);
}

.hero-image {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(23, 25, 24, 0.06), rgba(23, 25, 24, 0.18)),
    url("./assets/salon-interior-2026.jpeg") center 48% / cover no-repeat;
}

.hero-panel {
  padding: clamp(4rem, 8vw, 8.5rem) clamp(2rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.96;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(4rem, 7.8vw, 8.6rem);
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  color: #d8c7ab;
  font-weight: 400;
}

.hero-copy {
  max-width: 31rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.button {
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

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

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

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

.text-link {
  position: relative;
  padding-bottom: 0.25rem;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.hero-detail {
  margin-top: auto;
  padding-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-pad {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 6vw, 7rem);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10vw;
  align-items: end;
}

.intro h2,
.section-heading h2,
.salon-story h2,
.contact h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  letter-spacing: -0.045em;
}

.intro-copy {
  margin: 0;
  max-width: 35rem;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.services-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.services-grid article {
  min-height: 310px;
  padding: 2.2rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.services-grid article:last-child {
  border-right: 0;
}

.services-grid article > span {
  color: var(--brass);
  font-size: 0.76rem;
}

.services-grid h3 {
  margin: 5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.services-grid p {
  max-width: 28rem;
  margin: 0;
  color: rgba(23, 25, 24, 0.68);
}

.service-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding-bottom: 0.2rem;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.local-proof {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 10vw;
  align-items: center;
  background: #ebe9e3;
  border-top: 1px solid var(--line);
}

.local-proof h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  letter-spacing: -0.045em;
}

.local-proof p:not(.eyebrow) {
  max-width: 38rem;
  margin: 0 0 1.6rem;
  color: rgba(23, 25, 24, 0.72);
  font-size: 1.05rem;
}

.results {
  color: var(--white);
  background: var(--green);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 5vw;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading p:last-child {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
}

.results-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 2rem);
  align-items: start;
}

.result-card {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #102c24;
}

.result-card-tall img {
  aspect-ratio: 4 / 5;
}

.result-card figcaption {
  padding-top: 0.85rem;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews {
  background: #ebe9e3;
}

.reviews-heading,
.social-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5vw;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.reviews h2,
.social h2 {
  max-width: 850px;
  font-size: clamp(3rem, 5.8vw, 6.8rem);
  letter-spacing: -0.045em;
}

.google-score {
  min-width: 250px;
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.9rem;
  align-items: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
}

.google-score .google-g {
  grid-row: 1 / 3;
  font-size: 2.7rem;
  font-weight: 700;
  color: #4285f4;
}

.google-score strong {
  margin-right: 0.65rem;
  font-size: 1.35rem;
}

.google-score small {
  color: rgba(23, 25, 24, 0.62);
}

.stars {
  color: #d49b27;
  letter-spacing: 0.08em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 2rem);
}

.review-card {
  min-height: 250px;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-top: 3px solid var(--green);
}

.review-card blockquote {
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.08;
}

.review-card p {
  margin: auto 0 0;
  color: rgba(23, 25, 24, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.salon {
  padding-top: clamp(5rem, 9vw, 10rem);
  padding-bottom: clamp(5rem, 9vw, 10rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: #ebe9e3;
}

.salon-photo {
  position: relative;
}

.salon-photo::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(23, 60, 49, 0.35);
}

.salon-photo img {
  position: relative;
  width: 100%;
  max-height: 850px;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  right: -1rem;
  bottom: 1.8rem;
  padding: 0.8rem 1.1rem;
  color: var(--white);
  background: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.salon-story h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.salon-story p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(23, 25, 24, 0.72);
  font-size: 1.05rem;
}

.salon-story p:nth-of-type(2) {
  margin-top: 2rem;
}

.experience-card {
  width: min(420px, 100%);
  margin-top: 2rem;
  display: block;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(23, 25, 24, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.experience-card:hover,
.experience-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 23px 52px rgba(23, 25, 24, 0.2);
}

.experience-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.salon-story .text-link {
  display: inline-block;
  margin-top: 1.75rem;
}

.signature {
  min-height: 300px;
  padding: 4rem 6vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: var(--ink);
}

.signature img {
  width: min(1040px, 96vw);
  height: auto;
  object-fit: contain;
}

.signature p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.08em;
}

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

.social-heading > p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.social-grid-two {
  max-width: 980px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-post {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #0d0f0e;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.social-post-label {
  min-height: 58px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-post-label svg,
.social-button svg,
.contact-socials svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-post-label path,
.social-button path,
.contact-socials path {
  fill: currentColor;
  stroke: none;
}

.instagram-post iframe {
  width: 100%;
  height: 680px;
  flex: 0 0 680px;
  display: block;
  background: var(--white);
  border: 0;
}

.tiktok-post video {
  width: 100%;
  height: 680px;
  flex: 0 0 680px;
  display: block;
  object-fit: cover;
  background: #000;
}

.social-card-link {
  min-height: 58px;
  margin-top: auto;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--green);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.social-card-link:hover,
.social-card-link:focus-visible {
  background: var(--green-light);
}

.social-actions {
  margin-top: clamp(2rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 1rem;
}

.social-button {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

.social-button small {
  display: block;
  color: var(--brass);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact {
  color: var(--white);
  background: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 5rem;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  align-content: start;
}

.contact-details span {
  color: var(--brass);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-details address {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.contact-details address a {
  display: inline-block;
  margin-top: 0.45rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-details a {
  text-decoration: none;
}

.opening-hours dl {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.opening-hours dl div {
  padding: 0.25rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
}

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

.contact-socials p {
  display: grid;
  gap: 0.65rem;
}

.contact-socials a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-socials a span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}

.contact > .button {
  grid-column: 2;
  justify-self: start;
  margin-top: -2rem;
}

footer {
  min-height: 78px;
  padding: 1.5rem 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.58);
  background: var(--ink);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 15;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #1f8f58;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 31px;
  fill: currentColor;
}

.breadcrumbs {
  padding: 1.1rem 6vw;
  display: flex;
  gap: 0.65rem;
  color: rgba(23, 25, 24, 0.58);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}

.breadcrumbs a {
  color: var(--green);
  text-decoration: none;
}

.service-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 0.78fr);
  color: var(--white);
  background: var(--ink);
}

.service-hero-copy {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.4rem, 7vw, 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.96;
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin: 2rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.service-hero-copy .button {
  align-self: flex-start;
}

.service-hero > img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.service-hero-reverse > img {
  object-position: center 40%;
}

.service-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 6vw, 7rem);
}

.service-content > section {
  max-width: 830px;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}

.service-content h2,
.service-cta h2 {
  font-size: clamp(3rem, 5.4vw, 6rem);
  letter-spacing: -0.045em;
}

.service-content p:not(.eyebrow),
.service-list {
  color: rgba(23, 25, 24, 0.72);
  font-size: 1.08rem;
}

.service-split {
  max-width: none !important;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.service-split > img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.service-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-faq {
  max-width: 920px !important;
}

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

.service-faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.service-faq summary {
  padding: 1.4rem 2.5rem 1.4rem 0;
  position: relative;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  list-style: none;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  color: var(--brass);
}

.service-faq details[open] summary::after {
  content: "–";
}

.service-faq details p {
  max-width: 710px;
  margin: 0 0 1.5rem;
}

.service-cta {
  padding: clamp(5rem, 9vw, 9rem) clamp(1.4rem, 12vw, 13rem);
  color: var(--white);
  text-align: center;
  background: var(--green);
}

.service-cta h2 {
  max-width: 920px;
  margin-inline: auto;
}

.service-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.8rem auto 2rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: minmax(250px, 390px) 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--white);
    background: none;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 25px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .main-nav.open {
    position: fixed;
    inset: 91px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(23, 25, 24, 0.98);
  }

  .main-nav a {
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .lang-switcher {
    grid-column: 3;
    grid-row: 1;
    margin-right: 3.8rem;
  }

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

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

  .intro,
  .section-heading,
  .reviews-heading,
  .social-heading,
  .local-proof,
  .contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tiktok-post {
    max-width: 520px;
  }

  .contact > .button {
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 76px;
    padding: 0 1rem;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .brand img {
    width: min(275px, 75vw);
    height: 58px;
  }

  .lang-switcher {
    display: none;
  }

  .nav-open .lang-switcher {
    position: fixed;
    left: 50%;
    bottom: 2.5rem;
    z-index: 25;
    display: flex;
    margin: 0;
    transform: translateX(-50%);
  }

  .main-nav.open {
    inset: 75px 0 0;
  }

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

  .breadcrumbs {
    padding-inline: 1.35rem;
    overflow-x: auto;
    white-space: nowrap;
  }

  .service-hero {
    display: flex;
    flex-direction: column-reverse;
  }

  .service-hero > img {
    min-height: 58svh;
    max-height: 680px;
  }

  .service-hero-copy {
    padding: 4rem 1.35rem;
  }

  .service-hero h1 {
    font-size: clamp(3.5rem, 15vw, 5.8rem);
  }

  .service-content {
    padding: 5rem 1.35rem;
  }

  .service-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    min-height: 66svh;
    background-position: center 42%;
  }

  .hero-panel {
    min-height: 610px;
    padding: 4rem 1.35rem 2rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-detail {
    padding-top: 3rem;
    flex-direction: column;
  }

  .section-pad {
    padding: 5rem 1.35rem;
  }

  .intro {
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .services-grid article {
    min-height: auto;
    padding: 2rem 0;
    border-right: 0;
  }

  .services-grid h3 {
    margin-top: 2.5rem;
  }

  .results-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .result-card {
    min-width: 80vw;
    scroll-snap-align: start;
  }

  .result-card img,
  .result-card-tall img {
    aspect-ratio: 4 / 5;
  }

  .review-grid,
  .social-grid,
  .social-grid-two,
  .social-actions {
    grid-template-columns: 1fr;
  }

  .google-score {
    min-width: 0;
    width: 100%;
  }

  .review-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .instagram-post iframe {
    height: 620px;
    flex-basis: 620px;
  }

  .tiktok-post video {
    height: 620px;
    flex-basis: 620px;
  }

  .tiktok-post {
    max-width: none;
  }

  .salon {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .salon-photo::before {
    inset: -10px 10px 10px -10px;
  }

  .photo-label {
    right: -0.5rem;
  }

  .signature {
    min-height: 230px;
    padding-inline: 1rem;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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