/* ============================================
   INSIDE OUT - Clean CSS Rebuild
   Modern Grid/Flexbox Layout - No Framework Bloat
   ============================================ */

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Colors */
    --color-olive: #76881D;
    --color-cream: #f5f1e8;
    --color-dark: #1B0B07;
    --color-pink: #EBC5C4;
    --color-ecru: #AAA25E;
    --color-isabelline: #F1EBE4;
    --color-green-highlight: #9DB69A;
    --color-white: #ffffff;
    --color-text-light: #f5f1e8;

    /* Typography */
    --font-heading: 'Bellefair', serif;
    --font-body: 'Courier Prime', sans-serif;

    --meta-font-font-family: "Pontano Sans";
    --meta-font-font-style: normal;
    --meta-font-font-weight: 400;
    --meta-font-text-transform: none;
    --meta-font-letter-spacing: .01em;
    --meta-font-line-height: 1em;

    --large-text-size-value: 1.2;
    --base-font-size: 17px;
    --menu-colour: rgb(241, 235, 228); /* default light menu colour */


    /* Spacing */
    --container-max-width: 1400px;
    --page-padding: 4vw;
    --section-padding: 8vw 4vw;

    /* Header */
    --header-height: 120px;
    \1    /* Logo */
    --logo-mask-url: url('/media/IO-CH-Stacked-7.png');


}

/* ============================================
   Global Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: var(--base-font-size);

}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
  font-size: var(--base-font-size);

  /* Logo theme (default) */
  --logo-colour: var(--color-pink);

}

/* ============================================
   Logo theme overrides (by body id)
   ============================================ */

/* ============================================
   Menu theme overrides (by body id)
   ============================================ */
/* Menu colour now driven by --logo-colour via nav links */


body#beyondtheskin,
body#profilepage {
  --logo-colour: var(--color-ecru);
}

body#reviewspage {
  --logo-colour: var(--color-dark);
}

body#beautyhackspage {
  --logo-colour: var(--color-isabelline);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}


/* ============================================
   Gently animation 
   ============================================ */

/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  will-change: opacity, transform;
}

/* When revealed */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}



/* ============================================
   Container & Layout Utilities
   ============================================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    font-family: 'Bellefair', serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    background-color:  var(--color-pink);
    border-radius: 300px;
    padding: 20px 32px;
    border: none;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Button style stays same when header is scrolled */
.site-header.scrolled .btn-primary {
    background-color:  var(--color-pink);
    color: rgb(0, 0, 0);
}

.site-header.scrolled .btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    /* Colors */
    background-color:  var(--color-pink);
    color: rgb(0, 0, 0);

    /* Typography */
    font-family: "Bellefair", serif;
    font-size: 15.3584px;
    font-weight: 400;
    letter-spacing: 3.22526px;
    text-transform: uppercase;
    text-align: center;
    line-height: normal;

    /* Spacing */
    padding: 25.5px 37.4px;

    /* Border & Shape */
    border: none;
    border-radius: 300px;

    /* Effects */
    cursor: pointer;
    transition: opacity 0.1s linear;

    /* Display */
    display: inline-block;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.btn-secondary:focus {
    outline: 2px solid  var(--color-pink);
    outline-offset: 4px;
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.btn-dark:hover {
    opacity: 1;
    background-color: transparent;
    color: var(--color-dark);
    border-color: var(--color-dark);
}

/* ============================================
   HEADER - Fixed Navigation (Overlays Hero)
   ============================================ */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    color: var(--color-white);
}

/* Header with background on scroll */
.site-header.scrolled {
    background-color: var(--color-olive);
    backdrop-filter: blur(10px);
    color: var(--color-white);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--header-padding) var(--page-padding);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-container {
    padding: 0.5rem var(--page-padding);
}

/* Left Navigation */
.header-nav-left {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
}

.header-nav-left a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--logo-colour);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.header-nav-left a:hover {
    opacity: 0.7;
}

.site-header.scrolled .header-nav-left a {
    color: var(--color-white);
}

/* Center Logo */
.header-logo {
    text-align: center;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 3rem 0 3rem;
}

.header-logo img {
    width: auto;
    max-width: 100%;
    max-height: 140px;
    margin: 0 auto;
    display: block;
    transition: transform 0.3s ease;
    MARGIN-TOP: 1REM;
}

/* Colourised logo (transparent PNG)
   Requires a transparent PNG where the logo shape is the non-transparent area. */
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .header-logo a {
        display: inline-block;
        position: relative;
    }

    /* Keep layout size from the image, but hide its pixels */
    .header-logo img {
        visibility: hidden;
    }

    .header-logo a::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: var(--logo-colour);

        mask-image: var(--logo-mask-url);
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;

        -webkit-mask-image: var(--logo-mask-url);
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
    }
}

.site-header.scrolled .header-logo {
    max-height: 70px;
}

.site-header.scrolled .header-logo img {
    transform: translateY(0px);
}

/* Right Navigation */
.header-nav-right {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    align-items: center;
}

.header-nav-right a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--logo-colour);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, opacity 0.3s ease;
}


.header-nav-right a:hover {
    opacity: 0.7;
}

.site-header.scrolled .header-nav-right a {
    color: var(--color-white);
}
.header-nav-left, .header-nav-right{
  transform: translateY(-2REM); /* tweak value */
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #f5f1ed;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background-color: var(--color-olive);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 100px 30px 30px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    color: #f5f1ed;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 241, 237, 0.2);
    transition: opacity 0.3s ease;
}

.mobile-nav a:hover {
    opacity: 0.7;
}

.mobile-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 241, 237, 0.2);
}

.mobile-social a {
    border: none !important;
    padding: 0 !important;
}


.header-logo a{
  display:inline-block !important; /* stop theme making it full width */
  position:relative;
  line-height:0;                  /* removes extra inline height */
}

.header-logo img{
  display:block;                  /* ensures predictable sizing */
  max-height:140px;
  width:auto;
  visibility:hidden;              /* keeps space for overlay */
}

/* coloured logo overlay exactly over the image box */
.header-logo a::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  right:0;
  bottom:0;

  background-color: var(--logo-colour, #EBC5C4);

  -webkit-mask-image: url("/media/IO-CH-Stacked-7.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

  mask-image: url("/media/IO-CH-Stacked-7.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  pointer-events:none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: auto;
    min-height: 600px;
    max-height: 85vh;
    background-image: url('/media/felicity-lynn-g_CYfjiaZZY-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 180px;
    padding-bottom: 30px;
}
body#beyondtheskin .hero,
body#reviewspage .hero {
    background-image: none;
}



.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* tweak 0.30â€“0.45 */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--color-white);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    max-width: 1000px;
    width: 100%;
    padding: 0 2rem;
}

.hero h1 {
    font-family: 'Bellefair', serif;
    font-size: 33.416px;
    font-weight: 400;
    letter-spacing: 9.69064px;
    line-height: 44.9111px;
    text-transform: uppercase;
    color: rgb(241, 235, 228);
    text-align: center;
    margin-bottom: 34px;
}

.hero-subtitle {
  font-family: 'Courier Prime', sans-serif;
  font-size: 30.2832px;
  line-height: 1.6;
  letter-spacing: 0.51px;
  color:  var(--color-pink);
  text-align: center;

  margin-left: auto;
  margin-right: auto;
  margin-bottom: 37px;
}

.hero-minimal {
    padding-top: 280px;
    padding-bottom: 80px;
    min-height: 300px;
    /* background-color: var(--color-olive) !important; */
    background-color: var(--color-olive);
}

.hero-profile {
    background-image: none;
}
body#productspage .hero-profile {
    background-image: url(/media/hm2j2yo3/annie-spratt-x4conitoukc-unsplash.jpg);
}

/* ============================================
   BEYOND THE SKIN SECTION
   ============================================ */
.beyond-skin {
    background-color: var(--color-olive);
    color: var(--color-text-light);
    padding: 2vw 4vw 5vw 4vw;
    text-align: center;
    display:none;
}

.beyond-skin .container {
    max-width: min(1353px, calc(100vw - 4vw * 2));
    width: 100%;
}

.beyond-skin h2 {
    font-family: "Bellefair", serif;
    font-size: 33.416px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 9.69064px;
    line-height: 44.9111px;
    text-transform: uppercase;
    text-align: center;
    color: rgb(241, 235, 228);
    margin-top: 0px;
    margin-bottom: 34px;
}

.beyond-skin p {
    font-family: "Courier Prime", sans-serif;
    font-size: 17px;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.51px;
    line-height: 27.2px;
    text-align: center;
    color: rgb(241, 235, 228);
    margin-top: 17px;
    margin-bottom: 17px;
}

.beyond-skin .btn {
    margin-top: 1.5rem;
}

/* ============================================
   MY TREATMENTS SECTION
   ============================================ */
.treatments {
    background-color: var(--color-olive);
    color: var(--color-text-light);
    padding: var(--section-padding);
    text-align: center;
    display: none;
}

.treatments h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.treatment-card .btn {
    margin-top: auto;
}

.treatment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.treatment-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.treatment-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
}

.treatment-card p {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}
/* Full page background image */
.treatment-page{
  position: relative;
  min-height: 100vh;
  background-image: var(--treatment-bg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

/* Light overlay for legibility */
.treatment-page::before{
  content: "";
  position: fixed;
  inset: 0;
 /* background: rgba(255,255,255,0.58);  tweak 0.50â€“0.70 */
  pointer-events: none;
  z-index: 0;
}

/* Ensure content is above overlay */
.treatment-page > *{
  position: relative;
  z-index: 1;
}

/* Hero keeps height and spacing */
.hero-treatment{
  min-height: 400px;
  display: flex;
  align-items: center;
  background-image:none;
}

/* Neutral reading panel for main content */
.treatment-panel{
  background: transparent;
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.35);
}

.treatment-panel .content-body{
  backdrop-filter: blur(3px);
  border-radius: 18px;
  padding: 28px 24px;
  color: #F1EBE4;
}

/* Neutral quote panel */
.treatment-quote .testimonial-content{
  backdrop-filter: blur(3px);
  border-radius: 18px;
  padding: 28px 24px;
  color: #2a2a2a;
  max-width: 900px;
  margin: 0 auto 60px;
}


/* ============================================
   TREATMENTS SECTION
   ============================================ */
.treatments-section {
    background-color: var(--color-olive);
    padding: var(--section-padding);
    color: var(--color-text-light);
}
/* The Treatment page - Content section */
.treatment-content p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.treatment-content {
    padding: 80px 60px;
}
.treatments-section .section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.treatments-section h2 {
    font-family: 'Bellefair', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}
/* Treatment quote section */
.treatment-quote {
    padding: 80px 40px;
    text-align: center;
}

.treatment-quote .testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.treatment-quote blockquote {
    font-family: 'Bellefair', serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

.treatment-quote blockquote p {
    font-size: 0.95rem;
    font-style: normal !important;
    margin-bottom: 30px !important;
}

.treatment-quote cite {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem !important;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
}


/* ============================================
   PROFILE SECTION
   ============================================ */
   
   .profile-panel{
background-color:  var(--color-pink);
  padding: 40px 0;
}
/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise {
    background-color: var(--color-cream);
    background-image: url('/media/Inside-Out-CH---Paper-BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    display:none;
}

.expertise .container {
    max-width: none;
    padding: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.expertise-text {
    padding: 8vw 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.expertise-text p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.expertise-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expertise-section {
    padding: var(--section-padding);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    position: relative;
    background-image: url('/media/jeremy-bishop-fxhjyQSxDeE-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100vw;
    display:none;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.testimonial .container {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 0;
    width: 100%;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.slider-btn {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color:  var(--color-pink);
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-btn:hover {
    opacity: 0.9;
}

.slider-prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.slider-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4vw;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content blockquote {
    font-family: 'Bellefair', serif;
    font-size: clamp(1.5rem, 4vw, 36.6992px);
    font-weight: 400;
    letter-spacing: clamp(0.15em, 0.29em, 10.6428px);
    line-height: 1.35;
    text-transform: uppercase;
    text-align: center;
    color:  var(--color-pink);
    font-style: normal;
    margin: 0;
}

.testimonial-content p {
    margin-bottom: 2rem;
    font-family: 'Bellefair', serif;
    font-size: clamp(1.5rem, 4vw, 36.6992px);
    font-weight: 400;
    letter-spacing: clamp(0.15em, 0.29em, 10.6428px);
    line-height: 1.35;
    text-transform: uppercase;
    color:  var(--color-pink);
}

.highlight {
    color: var(--color-pink);
    font-weight: 700;
}

.testimonial-content cite {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-style: normal;
    color: var(--color-text-light);
}
/* Beyond the Skin page content */
.beyond-skin-content p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.beyond-skin-content {
    padding: 80px 60px;
    background-color: var(--color-cream);
       background-image: url('/media/Inside-Out-CH---Paper-BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* ============================================
   REDISCOVER SECTION
   ============================================ */
.rediscover {
    background-color: var(--color-cream);
    background-image: url('/media/Inside-Out-CH---Paper-BG.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--section-padding);
    text-align: center;
    display:none;
}

.rediscover .container {
    max-width: 800px;
}

.rediscover h2 {
    font-family: Bellefair;
    font-size: 33.416px;
    font-weight: 400;
    font-style: normal;
    line-height: 44.9111px;
    letter-spacing: 9.69064px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: rgb(27, 11, 7);
    margin-bottom: 2rem;
}

.rediscover p {
    font-size: 17.6px;
    font-weight: 400;
    font-style: normal;
    line-height: 31.68px;
    letter-spacing: normal;
    text-align: center;
    text-transform: none;
    text-decoration: none;
    color: rgb(26, 26, 26);
    margin-bottom: 1rem;
}

.rediscover-tagline {
    font-style: italic;
    margin-bottom: 2rem;
}

/* ============================================
   BEAUTY HACKS PAGE
   ============================================ */
.beauty-hack-item {
    border-bottom: 1px solid rgba(27, 11, 7, 0.15);
    padding: 40px 0;
}

.beauty-hack-item:first-child {
    padding-top: 0;
}

.beauty-hack-item:last-child {
    border-bottom: none;
}

.hack-title {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hack-description p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hack-description p:last-child {
    margin-bottom: 0;
}

/* ============================================
   REVIEWS PAGE
   ============================================ */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.reviews-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    padding: 30px 0;
    border-bottom: 1px solid rgba(27, 11, 7, 0.12);
}

.review-card:last-child {
    border-bottom: none;
}

.review-card blockquote {
    margin: 0;
}

.review-card blockquote p {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.review-card cite {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-olive);
}

.reviews-image {
    position: sticky;
    top: 40px;
}

.reviews-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-dark);
    color: var(--color-text-light);
    padding: 6rem var(--page-padding) 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}



.footer-col h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col nav a {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
}

.footer-col nav a:hover {
    color: var(--color-text-light);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-credit {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 0.5rem;
}

.footer-credit a {
    color: var(--color-text-light);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   PAGE-SPECIFIC STYLES
   ============================================ */

/* Page Hero (for About, Services, Contact pages) */
.page-hero {
    min-height: 500px;
    max-height: 70vh;
}

.page-hero h1,
.page-hero h2 {
    font-family: 'Bellefair', serif;
    font-size: 36.6992px;
    font-weight: 400;
    letter-spacing: 10.6428px;
    line-height: 49.3237px;
    text-transform: uppercase;
    color: rgb(241, 235, 228);
}

.contact-hero {
    background-image: url('Contact â€” Your Site Title_files/annie-spratt-ilrR4xfzqgg-unsplash.jpg');
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
}

.content-section.bg-cream {
    background-color: var(--color-cream);
}

.content-section .content-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-section .content-body p:last-child {
    margin-bottom: 0;
}

.content-section h4 {
    font-family: 'Bellefair', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.expertise-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-subtitle {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
}

/* Testimonial Single Variant */
.testimonial-single {
    background-image: url('About â€” Your Site Title_files/annie-spratt-x4CoNitOUKc-unsplash.jpg');
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 8vw 4vw;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-single .testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4vw;
}

.testimonial-single .testimonial-content blockquote,
.testimonial-single .testimonial-content p {
    font-family: 'Bellefair', serif;
    font-size: clamp(1.5rem, 4vw, 36.6992px);
    font-weight: 400;
    letter-spacing: clamp(0.15em, 0.29em, 10.6428px);
    line-height: 1.35;
    text-transform: none;
    transform: skewX(-4deg);
    text-align: center;
    color:  var(--color-pink);
    margin-bottom: 2rem;
}

.testimonial-single .testimonial-content cite {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-style: normal;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-cream);
    padding: 8vw 4vw;
    text-align: center;
}

.cta-large-text {
    font-family: 'Courier Prime', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Process Grid (4-step) */
.process-section {
    background-color: var(--color-cream);
    padding: var(--section-padding);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.process-number {
    font-family: 'Bellefair', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-olive);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-family: 'Bellefair', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.process-step p {
    font-family: 'Courier Prime', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--color-cream);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.contact-info-item h3 {
    font-family: 'Bellefair', serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-family: 'Courier Prime', sans-serif;
    font-size: 1rem;
}

.contact-info-item a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--color-olive);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Courier Prime', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.required {
    color: var(--color-pink);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Courier Prime', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-olive);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    margin-top: 1rem;
}

/* Utility Classes */
.container.narrow {
    max-width: 900px;
}

.text-center {
    text-align: center;
}

.text-center h2 {
    margin-bottom: 2rem;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile Breakpoints
   ============================================ */

/* Force hide mobile menu on desktop */
@media (min-width: 1025px) {
    .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Tablet & Below (â‰¤1024px) */
@media (max-width: 1024px) {
    :root {
        --header-padding: 4vw;
    }

    .header-container {
        grid-template-columns: 1fr auto 1fr;
        gap: 0;
        padding: var(--header-padding) var(--page-padding);
    }

    .header-nav-left,
    .header-nav-right {
        display: none !important;
    }

    .header-logo {
        grid-column: 2;
        justify-self: center;
        padding: 0;
    }

    .header-logo img {
        max-height: 100px;
    }

    .mobile-menu-toggle {
        display: flex;
        grid-column: 3;
        justify-self: end;
        padding: 10px 0 10px 10px;
    }

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

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

    .expertise-grid.reverse {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Mobile (â‰¤768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 6vw 4vw;
    }

    .header-logo img {
        max-height: 80px;
    }

    .mobile-menu-toggle {
        padding: 10px 5px 10px 10px;
    }

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

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-prev {
        left: 20px;
    }

    .slider-next {
        right: 20px;
    }

    .testimonial-content {
        padding: 6vw 5vw;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
        letter-spacing: 0.15em;
        line-height: 1.4;
    }

    .testimonial-single .testimonial-content {
        padding: 6vw 5vw;
    }

    .testimonial-single .testimonial-content blockquote,
    .testimonial-single .testimonial-content p {
        font-size: clamp(1.3rem, 3.5vw, 2rem);
        letter-spacing: 0.15em;
        line-height: 1.4;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Reviews: stack image below on mobile */
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Small Mobile (â‰¤480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .testimonial-content blockquote,
    .testimonial-content p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        letter-spacing: 0.12em;
    }

    .testimonial-single .testimonial-content blockquote,
    .testimonial-single .testimonial-content p {
        font-size: clamp(1.1rem, 3vw, 1.5rem);
        letter-spacing: 0.12em;
    }
}
/* ============================================
   Squarespace RTE mimic for hero subtitle
   Replicates .sqsrte-large responsive font sizing + paragraph spacing
   ============================================ */

/* Base: match RTE paragraph rhythm */
.hero-subtitle {
    line-height: var(--body-font-line-height);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Mobile portrait (<= 767px) */
@media screen and (max-width: 767px) and (orientation: portrait) {
    .hero-subtitle {
        font-size: calc((var(--large-text-size-value) - 1) * calc(.012 * min(100vh, 900px)) + 1rem);
    }
}

/* Tablet and up, plus landscape sizing rule */
@media screen and (min-width: 768px),
       screen and (max-width: calc(1512px - 1px)) and (orientation: landscape) {
    .hero-subtitle {
        font-size: calc((var(--large-text-size-value) - 1) * 1.2vw + 1rem);
    }
    .treatment-quote blockquote p {
    font-size: calc((var(--large-text-size-value, 1.2) - 1) * 1vw + 1.2rem)!important;
  }
}

/* Desktop large */
@media screen and (min-width: 1512px) {
    .hero-subtitle {
        font-size: calc(var(--large-text-size-value) * 1rem);
    }
    .treatment-quote blockquote p {
    font-size: calc(var(--large-text-size-value, 1.2) * 1.2rem)!important;
  }
}