:root{
  --ink: #30262a;
  --muted: #6f6267;
  --rose: #d99aaa;
  --rose-deep: #a75668;
  --rose-dark: #7f3f50;
  --rose-pale: #f8e4e8;
  --soft-blush: #f1d0da;
  --cream: #fffaf8;
  --surface: #ffffff;
  --surface-soft: #fffdfb;
  --footer-dark: #34272c;
  --line: rgba(127, 63, 80, .18);
  --shadow: 0 18px 50px rgba(77, 45, 54, .11);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --script: "Parisienne", cursive;
}

*{
  box-sizing: border-box;
}

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

body{
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
}

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

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

button, input, textarea{
  font: inherit;
}

main{
  overflow: hidden;
}

.site-header{
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 68px;
  padding: 5px clamp(16px, 4vw, 64px);
  display: grid;
  align-items: center;
  gap: 24px;
  background: rgba(255, 250, 248, .92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: min-height .25s ease, padding .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled{
  min-height: 56px;
  padding-top: 2px;
  padding-bottom: 2px;
  background: rgba(255,253,251,.97);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(73, 43, 51, .10);
}

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

.brand img{
  width: 100%;
  height: 100%;
  transition: transform .25s ease;
}

.brand:hover img{
  transform: scale(1.03);
}

.main-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 42px);
}

.main-nav > a, .nav-dropdown-toggle{
  position: relative;
  padding: 12px 0;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav > a::after, .nav-dropdown-toggle::after{
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  transition: right .25s ease;
}

.main-nav > a:hover::after, .main-nav > a.active::after, .nav-dropdown:hover .nav-dropdown-toggle::after, .nav-dropdown-toggle.active::after{
  right: 0;
}

.main-nav a.active, .nav-dropdown-toggle.active{
  color: var(--rose-deep);
}

.nav-dropdown{
  position: relative;
}

.nav-dropdown-menu{
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  min-width: 210px;
  padding: 10px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu{
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a{
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .72rem;
}

.nav-dropdown-menu a:hover{
  background: var(--rose-pale);
  color: var(--rose-deep);
}

.header-book{
  min-width: 86px;
  padding: 9px 18px;
  border: 1px solid var(--rose-deep);
  border-radius: 999px;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: .25s ease;
}

.header-book:hover{
  color: white;
  background: var(--rose-deep);
}

.menu-toggle{
  display: none;
}

.hero{
  min-height: 780px;
  padding: 118px 7vw 70px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 5vw;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.95), transparent 32%),
    linear-gradient(125deg, #fff8f6 10%, #f7d9df 100%);
}

.eyebrow{
  margin: 0 0 .4rem;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero h1{
  margin: 0;
  font: 700 clamp(3.7rem, 7.5vw, 7.2rem)/.88 var(--serif);
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.hero-script{
  margin: .4rem 0 .2rem;
  color: var(--rose-deep);
  font: clamp(2rem, 4vw, 4rem)/1 var(--script);
}

.hero-copy{
  max-width: 620px;
  margin: 1.3rem 0 1.8rem;
  color: var(--muted);
}

.hero-actions, .inline-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(128, 70, 84, .15);
}

.btn-solid{
  color: white;
}

.specials-banner{
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--rose-dark);
  color: white;
}

.specials-track{
  width: max-content;
  display: flex;
  animation: ticker 32s linear infinite;
}

.specials-banner:hover .specials-track{
  animation-play-state: paused;
}

.specials-group{
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 14px;
  white-space: nowrap;
  font-size: .73rem;
  letter-spacing: .025em;
}

.special-dot{
  color: var(--soft-blush);
}

@keyframes ticker {to{
  transform: translateX(-50%);
}}

.section{
  padding: 88px 5vw;
}

.section-heading{
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2, .page-intro h2, .owner-copy h2, .contact-section h2, .product-advice h2, .cta-box h2{
  margin: .15rem 0;
  font: 600 clamp(2.3rem, 4vw, 4.3rem)/1 var(--serif);
  text-transform: uppercase;
}

.heading-divider{
  color: var(--rose);
  font-size: 1.2rem;
}

.section-heading.compact{
  margin-bottom: 26px;
}

.promise-grid{
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.promise-grid article{
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.promise-grid span{
  color: var(--rose);
  font: 600 2.7rem var(--serif);
}

.promise-grid h3{
  margin: .3rem 0 .5rem;
  font: 600 1.65rem var(--serif);
}

.promise-grid p{
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.treatments-home{
  background: linear-gradient(180deg, var(--surface) 0%, var(--rose-pale) 100%);
}

.treatment-grid{
  width: min(1280px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.treatment-card{
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.treatment-card::after{
  content: "";
  position: absolute;
  inset: 0;
}

.treatment-card img{
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .45s ease;
}

.treatment-card:hover img{
  transform: scale(1.055);
}

.treatment-card div{
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: white;
}

.treatment-card h3{
  margin: 0;
  font: 600 2rem var(--serif);
  text-transform: uppercase;
}

.treatment-card span{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand-strip{
  padding: 70px 5vw;
  text-align: center;
  background: var(--cream);
}

.logo-marquee{
  width: min(1280px, 100%);
  margin: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.logo-track{
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  animation: brandScroll 30s linear infinite;
}

.logo-track span{
  min-width: 190px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font: 600 1.15rem var(--serif);
}

@keyframes brandScroll {to{
  transform: translateX(-50%);
}}

.centered-link{
  margin-top: 26px;
}

.team-home{
  background: var(--surface);
}

.team-grid{
  width: min(1280px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card{
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-photo{
  display: block;
  height: 410px;
  overflow: hidden;
  background: var(--rose-pale);
}

.team-photo img, .team-profile-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position-yogie{
  object-position: center 28%;
}

.position-alecia{
  object-position: center 18%;
}

.position-princess{
  object-position: center 20%;
}

.position-akhona{
  object-position: center 18%;
}

.position-tinyiko{
  object-position: center 38%;
}

.position-zoe{
  object-position: center 22%;
}

.team-card-copy{
  padding: 24px;
}

.team-card h3{
  margin: 0;
  font: 600 2rem var(--serif);
  text-transform: uppercase;
}

.team-role, .profile-role{
  margin: 0 0 .65rem;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.team-card-copy > p:not(.team-role){
  min-height: 84px;
  color: var(--muted);
  font-size: .84rem;
}

.text-link{
  color: var(--rose-deep);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.text-link:hover{
  text-decoration: underline;
}

.contact-section{
  padding: 90px 6vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  background: linear-gradient(130deg, var(--rose-pale) 0%, var(--cream) 100%);
}

.contact-lead{
  max-width: 640px;
  color: var(--muted);
}

.contact-actions{
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-action{
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.7);
}

.contact-action span{
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
}

.contact-action strong{
  color: var(--rose-deep);
  font-size: .86rem;
}

.visit-card{
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}

.visit-card h3{
  margin: 0 0 .4rem;
  font: 600 1.45rem var(--serif);
}

.visit-card p{
  color: var(--muted);
  font-size: .86rem;
}

.contact-form{
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}

.contact-form label{
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-form input, .contact-form textarea{
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: var(--surface);
}

.contact-form input:focus, .contact-form textarea:focus{
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(167,86,104,.08);
}

.form-note, .form-status{
  color: var(--muted);
  font-size: .72rem;
}

.form-status{
  min-height: 1.5em;
  color: var(--rose-deep);
}

.page-hero{
  position: relative;
  min-height: 510px;
  padding: 130px 5vw 70px;
  display: grid;
  place-items: center;
  background-position: center;
  background-size: cover;
}

.about-page-hero{
  background-image: url("assets/hero-diverse-women.webp");
}

.treatments-page-hero{
  background-image: url("assets/treatments/facials.webp");
}

.products-page-hero{
  background-image: url("assets/hero-diverse-women.webp");
}

.page-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(255,247,246,.95), rgba(235,174,188,.72));
}

.page-hero-copy{
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.page-hero h1{
  margin: .1rem 0 .5rem;
  color: var(--rose-dark);
  font: 700 clamp(3.5rem, 7vw, 6.7rem)/.9 var(--serif);
  text-transform: uppercase;
}

.page-hero-copy > p:last-child{
  max-width: 650px;
  margin: auto;
}

.page-intro{
  max-width: 900px;
  margin: auto;
  padding: 80px 20px 55px;
  text-align: center;
}

.page-intro > p:last-child{
  color: var(--muted);
}

.owner-story{
  width: min(1280px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.owner-photo{
  height: 620px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

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

.owner-copy p{
  color: var(--muted);
}

.values-section{
  background: linear-gradient(180deg, var(--surface) 0%, var(--rose-pale) 100%);
}

.team-profile-list{
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  gap: 28px;
}

.team-profile{
  display: grid;
  grid-template-columns: 360px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.team-profile:nth-child(even){
  grid-template-columns: 1fr 360px;
}

.team-profile:nth-child(even) .team-profile-photo{
  order: 2;
}

.team-profile-photo{
  min-height: 470px;
  background: var(--rose-pale);
}

.team-profile-copy{
  padding: clamp(30px, 5vw, 62px);
  align-self: center;
}

.team-profile-copy h2{
  margin: 0;
  font: 600 clamp(2.8rem, 5vw, 4.3rem)/1 var(--serif);
  text-transform: uppercase;
}

.team-profile-copy > p:not(.eyebrow):not(.profile-role){
  color: var(--muted);
}

.cta-box, .product-advice{
  margin: 15px 5vw 80px;
  padding: 40px clamp(24px, 5vw, 70px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, var(--soft-blush) 0%, var(--cream) 100%);
}

.cta-box h2, .product-advice h2{
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}

.accordion-list{
  width: min(1220px, calc(100% - 10vw));
  margin: 0 auto 80px;
  display: grid;
  gap: 18px;
}

.treatment-accordion{
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.treatment-accordion summary{
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 240px;
  cursor: pointer;
  list-style: none;
}

.treatment-accordion summary::-webkit-details-marker{
  display: none;
}

.accordion-image{
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

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

.accordion-title{
  padding: 26px 0;
}

.accordion-title h2{
  margin: 0;
  font: 600 clamp(2.5rem, 4vw, 4rem)/1 var(--serif);
  text-transform: uppercase;
}

.accordion-title > p:last-child{
  color: var(--muted);
}

.accordion-plus{
  width: 48px;
  height: 48px;
  margin-right: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose-deep);
  font-size: 1.8rem;
  transition: transform .25s ease;
}

.treatment-accordion[open] .accordion-plus{
  transform: rotate(45deg);
}

.accordion-content{
  padding: 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.accordion-content h3{
  margin: 0 0 .7rem;
  font: 600 1.5rem var(--serif);
}

.accordion-content li, .accordion-content p{
  color: var(--muted);
  font-size: .88rem;
}

.brand-catalogue{
  width: min(1220px, calc(100% - 10vw));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.brand-card{
  min-height: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand-mark{
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 25px;
  border-radius: 50%;
  color: white;
  background: var(--rose-deep);
  font: 600 2rem var(--serif);
}

.brand-card h2{
  margin: .2rem 0 .7rem;
  font: 600 2rem var(--serif);
}

.brand-card > p:not(.eyebrow){
  flex: 1;
  color: var(--muted);
}

.product-advice{
  margin-top: 0;
}

.site-footer{
  padding: 62px 5vw 22px;
  color: #efe8ea;
}

.footer-grid{
  width: min(1280px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr 1.15fr 1fr;
  gap: 38px;
}

.footer-bottom{
  width: min(1280px, 100%);
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #ab9da2;
  font-size: .7rem;
  text-align: center;
}

.back-to-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px);
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--rose-deep);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: .25s ease;
}

.back-to-top.show{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal-ready.is-visible{
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {.site-header{
  grid-template-columns: 95px 1fr auto;
  gap: 14px;
}.main-nav{
  gap: 18px;
}.promise-grid{
  grid-template-columns: repeat(2, 1fr);
}.treatment-grid, .team-grid, .brand-catalogue{
  grid-template-columns: repeat(2, 1fr);
}.footer-grid{
  grid-template-columns: repeat(2, 1fr);
}}

@media (max-width: 780px) {html{
  scroll-padding-top: 68px;
}.site-header, .site-header.is-scrolled{
  min-height: 60px;
  padding: 3px 14px;
  grid-template-columns: 88px 1fr auto;
}.brand, .site-header.is-scrolled .brand{
  height: 51px;
  width: 88px;
}.header-book{
  display: none;
}.menu-toggle{
  grid-column: 3;
  display: grid;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.82);
  cursor: pointer;
}.menu-toggle span{
  width: 18px;
  height: 1px;
  background: var(--ink);
}.main-nav{
  position: absolute;
  top: 60px;
  left: 12px;
  right: 12px;
  padding: 14px;
  display: none;
  align-items: stretch;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
}.main-nav.open{
  display: grid;
}.main-nav > a, .nav-dropdown-toggle{
  padding: 11px 12px;
  border-radius: 8px;
}.main-nav > a::after, .nav-dropdown-toggle::after{
  display: none;
}.nav-dropdown-menu{
  position: static;
  min-width: 0;
  padding: 3px 8px 8px 18px;
  visibility: visible;
  opacity: 1;
  transform: none;
  border: 0;
  box-shadow: none;
  background: transparent;
}.nav-dropdown-menu a{
  padding: 7px 10px;
}.hero{
  min-height: auto;
  padding: 105px 20px 60px;
  grid-template-columns: 1fr;
  text-align: center;
}.hero-actions{
  justify-content: center;
}.section{
  padding: 65px 18px;
}.treatment-grid, .team-grid, .brand-catalogue, .promise-grid{
  grid-template-columns: 1fr;
}.treatment-card{
  min-height: 350px;
}.team-photo{
  height: 480px;
}.contact-section{
  padding: 65px 18px;
  grid-template-columns: 1fr;
}.contact-action{
  flex-direction: column;
}.page-hero{
  min-height: 430px;
  padding-top: 105px;
}.page-hero h1{
  font-size: clamp(3rem, 15vw, 5rem);
}.owner-story{
  grid-template-columns: 1fr;
}.owner-photo{
  height: 500px;
}.team-profile, .team-profile:nth-child(even){
  grid-template-columns: 1fr;
}.team-profile:nth-child(even) .team-profile-photo{
  order: 0;
}.team-profile-photo{
  min-height: 510px;
}.accordion-list{
  width: calc(100% - 30px);
}.treatment-accordion summary{
  grid-template-columns: 112px 1fr auto;
  gap: 14px;
  min-height: 145px;
}.accordion-image{
  min-height: 145px;
}.accordion-title{
  padding: 18px 0;
}.accordion-title h2{
  font-size: 2rem;
}.accordion-title > p:last-child{
  display: none;
}.accordion-plus{
  width: 36px;
  height: 36px;
  margin-right: 12px;
  font-size: 1.3rem;
}.accordion-content{
  padding: 24px 18px;
  grid-template-columns: 1fr;
}.cta-box, .product-advice{
  margin: 10px 15px 60px;
  padding: 30px 22px;
  flex-direction: column;
  align-items: flex-start;
}.footer-grid{
  grid-template-columns: 1fr;
  gap: 26px;
}}

@media (max-width: 460px) {.hero h1{
  font-size: clamp(3rem, 16vw, 4.4rem);
}.team-photo{
  height: 420px;
}.team-profile-photo{
  min-height: 430px;
}.treatment-accordion summary{
  grid-template-columns: 90px 1fr 34px;
}.accordion-image{
  min-height: 130px;
}.accordion-title h2{
  font-size: 1.7rem;
}}

@media (prefers-reduced-motion: reduce) {*, *::before, *::after{
  scroll-behavior: auto !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}.specials-track, .logo-track{
  animation: none;
}}

.header-book{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.header-book .whatsapp-icon{
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.price-list-tools{
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 38px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.price-list-tools > label{
  display: block;
  margin-bottom: 8px;
  color: var(--rose-deep);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.treatment-search-wrap{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.treatment-search-wrap input{
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: none;
  background: var(--surface);
}

.treatment-search-wrap input:focus{
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(167,86,104,.08);
}

.treatment-search-wrap button{
  min-width: 88px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-deep);
  background: var(--rose-pale);
  cursor: pointer;
}

#treatmentSearchStatus{
  margin: 10px 4px 0;
  color: var(--muted);
  font-size: .76rem;
}

.price-accordion-content{
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
  align-items: start;
}

.price-groups{
  display: grid;
  gap: 28px;
}

.price-group{
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.price-group > h3{
  margin: 0;
  padding: 14px 18px;
  color: var(--rose-deep);
  background: var(--rose-pale);
  border-bottom: 1px solid var(--line);
  font: 600 1.35rem var(--serif);
  text-transform: uppercase;
  letter-spacing: .035em;
}

.price-group-note{
  margin: 0;
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
}

.price-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-item{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}

.price-item:last-child{
  border-bottom: 0;
}

.price-item[hidden]{
  display: none !important;
}

.service-name{
  min-width: 0;
  display: grid;
  gap: 3px;
}

.service-name strong{
  font-size: .86rem;
  font-weight: 500;
}

.service-description{
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.55;
}

.service-price{
  white-space: nowrap;
  color: var(--rose-deep);
  font-size: .86rem;
  font-weight: 700;
}

.booking-sidebar{
  position: sticky;
  top: 82px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #fff1f4);
}

.booking-sidebar h3{
  margin: .1rem 0 .65rem;
  font: 600 2rem var(--serif);
  text-transform: uppercase;
}

.booking-sidebar > p:not(.eyebrow){
  color: var(--muted);
  font-size: .82rem;
}

.sidebar-actions{
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sidebar-actions .btn{
  width: 100%;
}

.brand-card-actions{
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.brand-card-actions .text-link{
  width: fit-content;
}

.treatment-accordion.search-hidden{
  display: none;
}

@media (max-width: 780px) {.price-list-tools{
  width: calc(100% - 30px);
  padding: 18px;
}.price-accordion-content{
  grid-template-columns: 1fr;
}.booking-sidebar{
  position: static;
}.price-item{
  gap: 12px;
  padding: 12px 14px;
}}

@media (max-width: 460px) {.treatment-search-wrap{
  grid-template-columns: 1fr;
}.treatment-search-wrap button{
  width: 100%;
}.price-item{
  grid-template-columns: 1fr auto;
}}

.site-header.home-header .main-nav{
  justify-content: center;
}

.site-footer{
  padding-top: 54px;
}

.footer-grid.footer-grid-even{
  grid-template-columns: 1.08fr .82fr 1.18fr 1.05fr 1.28fr;
  gap: 0;
  align-items: stretch;
}

.footer-panel{
  min-width: 0;
  min-height: 270px;
  padding: 0 clamp(16px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,.12);
}

.footer-panel:first-child{
  padding-left: 0;
  border-left: 0;
}

.footer-panel:last-child{
  padding-right: 0;
}

.footer-panel-title-slot{
  min-height: 82px;
  display: flex;
  align-items: center;
}

.footer-panel-title-slot h3{
  margin: 0;
  color: white;
  font: 600 1.42rem var(--serif);
}

.footer-brand-panel .footer-panel-title-slot img{
  width: 152px;
  height: 82px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.footer-list{
  flex: 1;
  min-height: 176px;
  display: grid;
  grid-template-rows: repeat(5, minmax(30px, 1fr));
  align-items: center;
  gap: 4px;
}

.footer-list > a, .footer-list > span{
  min-width: 0;
  margin: 0;
  color: #d9cdd1;
  font-size: .76rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.footer-list > a:hover{
  color: white;
}

.footer-brand-lines span{
  color: #d9cdd1;
}

.footer-book-link{
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: white !important;
}

.footer-book-link:hover{
  background: rgba(255,255,255,.1);
}

.footer-social-widgets{
  flex: 1;
  min-height: 176px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.footer-social-widget{
  min-width: 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.footer-social-widget:hover{
  color: white;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.075);
  transform: translateY(-1px);
}

.footer-social-icon{
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}

.footer-social-icon svg{
  width: 19px;
  height: 19px;
}

.footer-social-widget > span:last-child{
  min-width: 0;
  display: grid;
  line-height: 1.25;
}

.footer-social-widget strong{
  color: white;
  font-size: .78rem;
}

.footer-social-widget small{
  color: #c7b9be;
  font-size: .65rem;
  overflow-wrap: anywhere;
}

.footer-bottom{
  margin-top: 28px;
}

@media (max-width: 1180px) {.footer-grid.footer-grid-even{
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 0;
}.footer-panel:nth-child(4){
  border-left: 0;
  padding-left: 0;
}.footer-panel:nth-child(3){
  padding-right: 0;
}}

@media (max-width: 780px) {.site-header.home-header, .site-header.home-header.is-scrolled{
  grid-template-columns: minmax(0, 1fr) auto;
}.site-header.home-header .menu-toggle{
  grid-column: 2;
}.footer-grid.footer-grid-even{
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 0;
}.footer-panel, .footer-panel:first-child, .footer-panel:last-child, .footer-panel:nth-child(3), .footer-panel:nth-child(4){
  padding: 0 20px;
  border-left: 1px solid rgba(255,255,255,.12);
}.footer-panel:nth-child(odd){
  padding-left: 0;
  border-left: 0;
}.footer-panel:nth-child(even){
  padding-right: 0;
}}

@media (max-width: 540px) {.footer-grid.footer-grid-even{
  grid-template-columns: 1fr;
}.footer-panel, .footer-panel:first-child, .footer-panel:last-child, .footer-panel:nth-child(3), .footer-panel:nth-child(4), .footer-panel:nth-child(odd), .footer-panel:nth-child(even){
  min-height: auto;
  padding: 24px 0;
  border-left: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}.footer-panel:first-child{
  padding-top: 0;
  border-top: 0;
}.footer-panel-title-slot{
  min-height: 62px;
}.footer-list, .footer-social-widgets{
  min-height: 0;
}.footer-list{
  grid-template-rows: none;
  gap: 12px;
}}

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

.brand{
  width: 128px;
  height: 66px;
  overflow: visible;
}

.site-header.is-scrolled .brand{
  height: 56px;
}

.brand img{
  object-fit: contain;
  object-position: left center;
}

.site-header.home-header{
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 980px) {.site-header{
  grid-template-columns: 118px 1fr auto;
}.brand{
  width: 114px;
  height: 62px;
}}

@media (max-width: 780px) {.site-header, .site-header.is-scrolled{
  grid-template-columns: 104px 1fr auto;
}.brand, .site-header.is-scrolled .brand{
  width: 100px;
  height: 58px;
}.site-header.home-header, .site-header.home-header.is-scrolled{
  grid-template-columns: minmax(0, 1fr) auto;
}}

@media (max-width: 540px) {.brand, .site-header.is-scrolled .brand{
  width: 92px;
  height: 54px;
}}

.main-nav a.active, .nav-dropdown-toggle.active, .text-link, .contact-action strong, .form-status, .accordion-plus, .price-list-tools > label, .service-price, .booking-sidebar .eyebrow, .brand-card .eyebrow{
  color: var(--rose-dark);
}

.main-nav > a::after, .nav-dropdown-toggle::after{
  background: var(--rose-dark);
}

.btn-solid{
  background: var(--rose-deep);
}

.btn-solid:hover, .header-book:hover, .back-to-top:hover{
  background: var(--rose-dark);
}

.header-book{
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.header-book:hover{
  border-color: var(--rose-dark);
}

.btn-light{
  color: var(--rose-dark);
  border-color: var(--rose);
  background: rgba(255, 253, 251, .88);
}

.btn-light:hover{
  border-color: var(--rose-dark);
  background: var(--surface);
}

.eyebrow, .hero-script, .team-role, .profile-role{
  color: var(--rose-deep);
}

.section-heading h2, .page-intro h2, .owner-copy h2, .contact-section h2, .product-advice h2, .cta-box h2, .team-card h3, .team-profile-copy h2, .brand-card h2, .accordion-title h2{
  color: var(--ink);
}

.specials-banner, .back-to-top{
  background: var(--rose-dark);
}

.treatment-card::after{
  background: linear-gradient(transparent 38%, rgba(48, 38, 42, .90));
}

.promise-grid article, .team-card, .team-profile, .treatment-accordion, .brand-card, .contact-form, .price-list-tools, .price-group, .booking-sidebar{
  border-color: var(--line);
  background-color: var(--surface);
}

.logo-track span, .contact-action, .visit-card, .footer-social-widget{
  border-color: var(--line);
}

.site-footer{
  background: var(--footer-dark);
}

.footer-list > a:hover, .footer-social-widget:hover{
  color: var(--surface);
}

.footer-social-icon{
  color: var(--rose);
}

input:focus, textarea:focus, .contact-form input:focus, .contact-form textarea:focus, .treatment-search-wrap input:focus{
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(167, 86, 104, .10);
}

.treatment-description-card{
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 12px 30px rgba(77, 45, 54, .07);
}

.treatment-description-card > p:not(.eyebrow){
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: .87rem;
}

.treatment-description-card h3{
  margin: 1.1rem 0 .35rem;
  font: 600 1.35rem var(--serif);
}

.treatment-guide-list{
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.treatment-guide-list li{
  margin: .45rem 0;
  font-size: .84rem;
}

.accordion-summary{
  max-width: 680px;
  margin: .35rem 0 .1rem;
  color: var(--ink) !important;
  font-size: .84rem;
}

.evolution-family{
  width: min(1220px, calc(100% - 10vw));
  margin: 0 auto 28px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(120deg, var(--rose-pale) 0%, var(--cream) 100%);
  box-shadow: var(--shadow);
}

.evolution-family h2{
  margin: .15rem 0 .55rem;
  font: 600 clamp(2rem, 3.4vw, 3.3rem)/1 var(--serif);
  text-transform: uppercase;
}

.evolution-family-copy > p:last-child{
  margin-bottom: 0;
  color: var(--muted);
}

.evolution-brand-list{
  display: grid;
  gap: 10px;
}

.evolution-brand-list span{
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, .78);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
}

.brand-card-described{
  min-height: 430px;
}

.brand-card-described > p:not(.eyebrow){
  font-size: .82rem;
  line-height: 1.7;
}

.brand-card-featured{
  background: linear-gradient(145deg, var(--surface) 0%, var(--rose-pale) 100%);
}

@media (max-width: 780px) {.evolution-family{
  width: calc(100% - 30px);
  grid-template-columns: 1fr;
}.accordion-summary{
  display: none;
}.treatment-description-card{
  padding: 20px;
}}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  font-size: .78rem;
  font-weight: 600;
}

.form-status.is-sending {
  color: var(--muted);
}

.form-status.is-success {
  color: #477354;
}

.form-status.is-error {
  color: #9b3448;
}

.treatment-card-image--nails {
  object-position: center 52%;
}

.treatment-card-image--facials {
  object-position: center 46%;
}

.treatment-card-image--body {
  object-position: center 48%;
}

.treatment-card-image--hair-removal {
  object-position: center center;
}

.treatment-card-image--make-up {
  object-position: center 46%;
}

.treatment-card-image--aura-combos {
  object-position: center 48%;
}

.brand-catalogue .brand-card {
  background: linear-gradient(145deg, var(--surface) 0%, var(--rose-pale) 100%);
}

.brand-catalogue .brand-card:hover {
  background: linear-gradient(145deg, var(--surface) 0%, var(--soft-blush) 100%);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 6px;
  color: #ffffff;
  background: var(--rose-dark);
  font-weight: 600;
  transform: translateY(-150%);
}

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

address {
  font-style: normal;
}

.not-found-page {
  width: min(760px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.not-found-page img {
  width: min(300px, 78vw);
  height: auto;
}

.not-found-page h1 {
  margin: 0 0 12px;
  font: 700 clamp(2.3rem, 7vw, 4.8rem)/.95 var(--serif);
}

.not-found-page > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

:focus-visible{
  outline: 3px solid rgba(127,63,80,.42);
  outline-offset: 4px;
}
.contact-form select{
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}
.contact-form select:focus{
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(167,86,104,.10);
}
.consent-row{
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin: 4px 0 14px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.5;
}
.consent-row input{
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rose-dark);
}
.consent-row a{
  color: var(--rose-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom{
  gap: 18px;
  flex-wrap: wrap;
}.footer-legal-links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}.footer-legal-links a{
  color: inherit;
  font-size: .7rem;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.34);
  text-underline-offset: 3px;
}.footer-legal-links a:hover{
  color: var(--rose);
}
.legal-hero{
  min-height: 400px;
  padding: 145px 7vw 70px;
  display: grid;
  align-content: center;
  background: radial-gradient(circle at 78% 22%,rgba(255,255,255,.86),transparent 24%),linear-gradient(125deg,var(--cream),var(--rose-pale));
}.legal-hero h1{
  max-width: 900px;
  margin: 0;
  font: 700 clamp(3.2rem,8vw,7rem)/.9 var(--serif);
  letter-spacing: -.035em;
  text-transform: uppercase;
}.legal-hero>p:not(.eyebrow):not(.legal-updated){
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
}.legal-updated{
  margin: 1rem 0 0;
  color: var(--rose-dark);
  font-size: .76rem;
  font-weight: 600;
}
.legal-page{
  width: min(920px,calc(100% - 34px));
  margin: 0 auto;
  padding: 70px 0 90px;
}.legal-section{
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}.legal-section:first-child{
  padding-top: 0;
}.legal-section:last-child{
  border-bottom: 0;
}.legal-section h2{
  margin: 0 0 12px;
  font: 600 clamp(1.8rem,4vw,2.6rem)/1 var(--serif);
}.legal-section p,.legal-section li{
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}.legal-section ul{
  margin: 0;
  padding-left: 1.2rem;
}
@media(max-width:720px){.legal-hero{
  min-height: 340px;
  padding: 120px 20px 55px;
}.legal-page{
  padding: 55px 0 70px;
}.footer-bottom{
  align-items: flex-start;
}}
@media(prefers-reduced-motion:reduce){html{
  scroll-behavior: auto;
}*,*::before,*::after{
  scroll-behavior: auto !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}}

@media (max-width: 900px) {
  
}

@media (max-width: 700px) {
  

  

  

  

  

  
}

@media (max-width: 700px) {
  
}

@media (max-width: 520px) {
  .aura-home-hero {
    padding: 88px 18px 24px;
  }

  .aura-home-hero__logo {
    width: 138px;
    margin-bottom: 14px;
  }

  .aura-home-hero__strapline {
    font-size: .64rem;
    letter-spacing: .13em;
  }

  .aura-home-hero__strapline span {
    margin: 0 .25rem;
  }

  .aura-home-hero__copy {
    margin: 14px 0 20px;
    font-size: .86rem;
  }

  .aura-home-hero__button {
    width: 100%;
  }

  .aura-home-hero__visual {
    margin: 0 -10px;
  }
}

/* Aura homepage hero — edge-to-edge image fix */
.aura-home-hero {
  position: relative;
  min-height: 620px;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.96), transparent 24%),
    linear-gradient(112deg, #fffaf8 0%, #f8e4e8 50%, #f1d0da 100%);
}

.aura-home-hero__inner {
  position: relative;
  width: min(1380px, calc(100% - 48px));
  min-height: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.aura-home-hero__content {
  position: relative;
  z-index: 4;
  width: min(500px, 44%);
  padding: 104px 0 34px;
}

.aura-home-hero__logo {
  display: block;
  width: clamp(126px, 12vw, 182px);
  height: auto;
  margin: 0 0 18px;
  filter: drop-shadow(0 8px 18px rgba(127, 63, 80, .08));
}

.aura-home-hero__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  line-height: .91;
  letter-spacing: -.035em;
}

.aura-home-hero__title span {
  display: block;
  font-size: clamp(2.55rem, 4.2vw, 4.8rem);
  font-style: normal;
  font-weight: 500;
}

.aura-home-hero__title em {
  display: block;
  margin-top: .08em;
  color: var(--rose-dark);
  font-size: clamp(3.1rem, 5.4vw, 5.95rem);
  font-style: italic;
  font-weight: 500;
}

.aura-home-hero__strapline {
  margin: 18px 0 0;
  color: var(--rose-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.aura-home-hero__strapline span {
  margin: 0 .42rem;
  color: var(--rose);
}

.aura-home-hero__copy {
  max-width: 455px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
}

.aura-home-hero__button {
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-dark), var(--rose-deep));
  box-shadow: 0 12px 28px rgba(127, 63, 80, .13);
}

.aura-home-hero__button:hover {
  background: linear-gradient(135deg, #713747, var(--rose-dark));
}

/*
  Critical fix:
  this is anchored to .aura-home-hero itself, so the women begin at
  the exact top edge and finish at the exact bottom edge of the hero.
*/
.aura-home-hero__visual {
  position: absolute;
  z-index: 1;
  inset: 0 0 0 auto;
  width: 57%;
  min-height: 0;
  overflow: hidden;
}

.aura-home-hero__visual picture {
  position: absolute;
  inset: 0;
  display: block;
}

.aura-home-hero__people {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

/* Blend the image seamlessly into the hero palette on both sides. */
.aura-home-hero__visual::before,
.aura-home-hero__visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  pointer-events: none;
}

.aura-home-hero__visual::before {
  left: 0;
  width: 34%;
  background: linear-gradient(
    90deg,
    rgba(248, 228, 232, 1) 0%,
    rgba(248, 228, 232, .92) 18%,
    rgba(248, 228, 232, .68) 42%,
    rgba(248, 228, 232, .34) 68%,
    rgba(248, 228, 232, 0) 100%
  );
}

.aura-home-hero__visual::after {
  right: 0;
  width: 13%;
  background: linear-gradient(
    90deg,
    rgba(241, 208, 218, 0) 0%,
    rgba(241, 208, 218, .18) 42%,
    rgba(241, 208, 218, .58) 74%,
    rgba(241, 208, 218, .92) 100%
  );
}

@media (max-width: 1100px) {
  .aura-home-hero {
    min-height: 590px;
  }

  .aura-home-hero__inner {
    width: min(1380px, calc(100% - 36px));
    min-height: 590px;
  }

  .aura-home-hero__content {
    width: min(460px, 45%);
    padding-top: 98px;
  }

  .aura-home-hero__visual {
    width: 58%;
  }
}

@media (max-width: 860px) {
  .aura-home-hero {
    min-height: 0;
    padding-top: 88px;
  }

  .aura-home-hero__inner {
    width: calc(100% - 36px);
    min-height: 0;
    display: block;
  }

  .aura-home-hero__content {
    width: 100%;
    max-width: 620px;
    padding: 0 0 26px;
  }

  .aura-home-hero__title span {
    font-size: clamp(2.45rem, 8.6vw, 4rem);
  }

  .aura-home-hero__title em {
    font-size: clamp(3rem, 10.4vw, 4.9rem);
  }

  .aura-home-hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(350px, 90vw, 560px);
    margin-top: 8px;
  }

  .aura-home-hero__visual::after {
    inset: 0;
    width: auto;
    height: 18%;
    background: linear-gradient(
      180deg,
      #f7e3e7 0%,
      rgba(247, 227, 231, .62) 44%,
      rgba(247, 227, 231, 0) 100%
    );
  }

  .aura-home-hero__people {
    object-position: center top;
  }
}

@media (max-width: 520px) {
  .aura-home-hero {
    padding-top: 82px;
  }

  .aura-home-hero__inner {
    width: calc(100% - 28px);
  }

  .aura-home-hero__logo {
    width: 136px;
    margin-bottom: 14px;
  }

  .aura-home-hero__strapline {
    font-size: .64rem;
    letter-spacing: .13em;
  }

  .aura-home-hero__strapline span {
    margin: 0 .25rem;
  }

  .aura-home-hero__copy {
    margin: 14px 0 20px;
    font-size: .86rem;
  }

  .aura-home-hero__button {
    width: 100%;
  }

  .aura-home-hero__visual {
    height: clamp(330px, 105vw, 500px);
  }
}

/* Footer: use the actual rose-gold Aura logo instead of the old inverted logo. */
.footer-brand-panel .footer-panel-title-slot img {
  width: 142px;
  height: 104px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Final colour harmonisation for the hero photograph */
.aura-home-hero__visual {
  background: linear-gradient(90deg, #f8e4e8 0%, #f1d0da 100%);
}

.aura-home-hero__people {
  filter: saturate(.96) contrast(.99) brightness(1.01);
}

/* Footer brand panel: remove text block and let the logo fill the space */
.footer-brand-panel {
  justify-content: center;
  align-items: center;
}

.footer-brand-panel .footer-panel-title-slot {
  min-height: 270px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer-brand-panel .footer-panel-title-slot img {
  width: min(100%, 255px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.footer-brand-panel .footer-brand-lines {
  display: none !important;
}
