/* =========================================================
   HI HAIR EXTENSIONS
   MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --cream: #F7F2ED;
    --champagne: #EFE4DA;
    --gold: #C9AA8A;
    --deep-gold: #A57F5D;
    --brown: #4B382C;

    --dark: #32231D;
    --dark-soft: #3C2A23;

    --white: #FFFFFF;
    --black: #17110E;

    --text: #4B382C;
    --muted: #78665A;

    --border: rgba(75, 56, 44, 0.18);
    --light-border: rgba(255, 255, 255, 0.16);

    --shadow:
        0 18px 45px rgba(58, 39, 29, 0.10);

    --heading:
        "Cormorant Garamond",
        Georgia,
        serif;

    --body:
        "Manrope",
        Arial,
        sans-serif;

}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    background: var(--cream);

    color: var(--text);

    font-family: var(--body);

    font-size: 16px;

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;

}


body.no-scroll {

    overflow: hidden;

}


img {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4 {

    margin-top: 0;

    color: var(--brown);

    font-family: var(--heading);

    font-weight: 500;

    line-height: 1.05;

}


h1 {

    font-size: clamp(
        3rem,
        7vw,
        6.8rem
    );

}


h2 {

    font-size: clamp(
        2.5rem,
        5vw,
        4.8rem
    );

}


h3 {

    font-size: clamp(
        1.8rem,
        3vw,
        2.7rem
    );

}


p {

    margin-top: 0;

}


.eyebrow {

    margin-bottom: 16px;

    color: var(--deep-gold);

    font-size: 0.73rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.section-inner {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

}


.section-inner.narrow {

    width: min(
        850px,
        calc(100% - 48px)
    );

}


.text-link {

    display: inline-block;

    padding-bottom: 4px;

    border-bottom:
        1px solid var(--deep-gold);

    color: var(--brown);

    font-size: 0.86rem;

    font-weight: 600;

    letter-spacing: 0.04em;

}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 54px;

    padding: 15px 30px;

    border: 1px solid transparent;

    border-radius: 0;

    font-family: var(--body);

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.08em;

    text-align: center;

    text-transform: uppercase;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;

}


.button:hover {

    transform: translateY(-2px);

}


.button-dark {

    background: var(--brown);

    color: var(--cream);

}


.button-dark:hover {

    background: var(--deep-gold);

}


.button-light {

    background: var(--cream);

    color: var(--brown);

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: relative;

    z-index: 100;

    background:
        rgba(247, 242, 237, 0.97);

    border-bottom:
        1px solid var(--border);

}


.nav-wrap {

    display: flex;

    width: min(
        1380px,
        calc(100% - 48px)
    );

    min-height: 108px;

    margin: 0 auto;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    width: 118px;

    align-items: center;

}


.brand img {

    width: 100%;

    height: auto;

}


.site-nav {

    display: flex;

    align-items: center;

    gap: 28px;

}


.site-nav > a {

    position: relative;

    color: var(--brown);

    font-size: 0.76rem;

    font-weight: 500;

    letter-spacing: 0.06em;

}


.site-nav > a:not(.nav-cta)::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: -9px;

    left: 0;

    height: 1px;

    background: var(--deep-gold);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.2s ease;

}


.site-nav > a:hover::after,
.site-nav > a.active::after {

    transform: scaleX(1);

}


.site-nav .nav-cta {

    padding: 13px 20px;

    background: var(--brown);

    color: var(--cream);

}


.nav-toggle {

    display: none;

    width: 48px;

    height: 48px;

    padding: 10px;

    border: 0;

    background: transparent;

}


.nav-toggle span {

    display: block;

    width: 100%;

    height: 1.5px;

    margin: 7px 0;

    background: var(--brown);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {

    padding:
        clamp(90px, 12vw, 165px)
        24px;

    background:
        linear-gradient(
            135deg,
            var(--cream),
            var(--champagne)
        );

    border-bottom:
        1px solid var(--border);

}


.page-hero-inner {

    width: min(
        1100px,
        100%
    );

    margin: 0 auto;

    text-align: center;

}


.page-hero h1 {

    max-width: 900px;

    margin:
        0 auto;

}


/* =========================================================
   HOME HERO
   ========================================================= */

.home-hero {

    display: grid;

    min-height:
        calc(100vh - 108px);

    grid-template-columns:
        minmax(0, 1.02fr)
        minmax(0, 0.98fr);

    background: var(--cream);

}


.home-hero-image {

    min-height: 650px;

    overflow: hidden;

}


.home-hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


.home-hero-content {

    display: flex;

    padding:
        clamp(60px, 8vw, 120px);

    flex-direction: column;

    justify-content: center;

}


.home-hero-content h1 {

    margin-bottom: 28px;

}


.hero-copy {

    max-width: 530px;

    margin-bottom: 36px;

    color: var(--muted);

    font-size: 1.05rem;

}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;

}


.hero-proof {

    display: flex;

    margin-top: 34px;

    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 0.82rem;

}


.stars {

    color: var(--deep-gold);

    letter-spacing: 0.1em;

}


/* =========================================================
   HOME INTRO
   ========================================================= */

.home-intro {

    padding:
        clamp(90px, 12vw, 160px)
        0;

    text-align: center;

}


.home-intro h2 {

    margin-bottom: 28px;

}


.home-intro p:not(.eyebrow) {

    max-width: 700px;

    margin:
        0 auto
        28px;

    color: var(--muted);

    font-size: 1.05rem;

}


/* =========================================================
   HOME GALLERY
   ========================================================= */

.home-gallery-preview {

    padding:
        clamp(80px, 10vw, 130px)
        0;

    background: var(--champagne);

}


.section-heading {

    display: flex;

    margin-bottom: 42px;

    align-items: flex-end;

    justify-content: space-between;

    gap: 24px;

}


.section-heading h2 {

    margin-bottom: 0;

}


.home-gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

}


.home-gallery-grid img {

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;

}


/* =========================================================
   ENQUIRY SECTION
   ========================================================= */

.enquiry-section {

    background: var(--dark);

    color: var(--cream);

}


.enquiry-layout {

    display: grid;

    padding:
        clamp(85px, 10vw, 140px)
        0;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap:
        clamp(60px, 8vw, 120px);

}


.enquiry-intro {

    align-self: start;

}


.enquiry-intro h2 {

    color: var(--cream);

}


.enquiry-intro p:not(.eyebrow) {

    max-width: 430px;

    color:
        rgba(247, 242, 237, 0.78);

}


.enquiry-form {

    display: grid;

    gap: 26px;

}


.form-field {

    display: grid;

    gap: 9px;

}


.form-field label {

    color: inherit;

    font-size: 0.78rem;

    font-weight: 600;

    letter-spacing: 0.04em;

}


.form-field input,
.form-field textarea {

    width: 100%;

    padding:
        17px
        18px;

    border:
        1px solid
        rgba(247, 242, 237, 0.24);

    border-radius: 0;

    outline: none;

    background: transparent;

    color: var(--cream);

    font-size: 1rem;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;

}


.form-field textarea {

    min-height: 160px;

    resize: vertical;

}


.form-field input:focus,
.form-field textarea:focus {

    border-color: var(--gold);

}


.form-submit {

    width: 100%;

    min-height: 62px;

    background: var(--cream);

    color: var(--brown);

}


.form-submit:hover {

    background: var(--gold);

    color: var(--brown);

}


/* Safari / iPhone Autofill */

.enquiry-form input:-webkit-autofill,
.enquiry-form input:-webkit-autofill:hover,
.enquiry-form input:-webkit-autofill:focus {

    -webkit-text-fill-color:
        var(--cream);

    -webkit-box-shadow:
        0 0 0 1000px
        var(--dark)
        inset;

    transition:
        background-color
        9999s ease-out
        0s;

}


.light-form input:-webkit-autofill,
.light-form input:-webkit-autofill:hover,
.light-form input:-webkit-autofill:focus {

    -webkit-text-fill-color:
        var(--brown);

    -webkit-box-shadow:
        0 0 0 1000px
        var(--cream)
        inset;

}


.hidden-field {

    position: absolute !important;

    width: 1px !important;

    height: 1px !important;

    padding: 0 !important;

    margin: -1px !important;

    overflow: hidden !important;

    clip:
        rect(0, 0, 0, 0) !important;

    white-space: nowrap !important;

    border: 0 !important;

}


.form-success {

    padding: 28px;

    border:
        1px solid
        var(--gold);

    background:
        rgba(201, 170, 138, 0.12);

    color: var(--cream);

    font-size: 1rem;

}


.form-success strong {

    display: block;

    margin-bottom: 5px;

    font-family: var(--heading);

    font-size: 2rem;

    font-weight: 500;

}


/* =========================================================
   SERVICES
   ========================================================= */

.service-stack-section {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        clamp(70px, 9vw, 125px)
        0;

}


.service-row {

    display: grid;

    padding:
        clamp(42px, 6vw, 72px)
        0;

    border-bottom:
        1px solid var(--border);

    grid-template-columns:
        80px
        minmax(0, 1fr)
        180px;

    gap:
        clamp(24px, 4vw, 60px);

    align-items: start;

}


.service-row:first-child {

    border-top:
        1px solid var(--border);

}


.service-number {

    padding-top: 5px;

    color: var(--deep-gold);

    font-family: var(--heading);

    font-size: 1.4rem;

}


.service-label {

    margin-bottom: 12px;

    color: var(--deep-gold);

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.service-row-content h2 {

    margin-bottom: 22px;

    font-size:
        clamp(2.5rem, 5vw, 4rem);

}


.service-row-content > p {

    max-width: 720px;

    color: var(--muted);

}


.service-detail {

    margin-top: 25px;

    font-size: 0.88rem;

    font-weight: 500;

}


.service-note {

    display: inline-block;

    margin-top: 12px;

    padding:
        11px
        15px;

    border-left:
        2px solid
        var(--gold);

    background:
        rgba(201, 170, 138, 0.10);

    color: var(--brown) !important;

    font-size: 0.86rem;

}


.service-row-price {

    display: flex;

    padding-top: 5px;

    flex-direction: column;

    align-items: flex-end;

    text-align: right;

}


.service-row-price small {

    margin-bottom: 3px;

    color: var(--deep-gold);

    font-size: 0.62rem;

    font-weight: 600;

    letter-spacing: 0.14em;

}


.service-row-price span {

    color: var(--brown);

    font-family: var(--heading);

    font-size:
        clamp(2rem, 3vw, 3rem);

    line-height: 1;

}


.service-row-price .price-word {

    font-family: var(--body);

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 0.15em;

}


.service-row-feature {

    margin:
        24px
        -32px;

    padding:
        clamp(42px, 6vw, 72px)
        32px;

    background:
        rgba(239, 228, 218, 0.42);

}


/* =========================================================
   INVISIBLE TAPE CALLOUT
   ========================================================= */

.method-highlight {

    max-width: 720px;

    margin-top: 28px;

    padding:
        25px
        28px;

    border:
        1px solid
        rgba(165, 127, 93, 0.32);

    background: var(--champagne);

}


.method-highlight-title {

    display: block;

    margin-bottom: 8px;

    color: var(--brown);

    font-family: var(--heading);

    font-size: 1.55rem;

    font-weight: 600;

}


.method-highlight p {

    margin-bottom: 0;

    color: var(--muted);

    font-size: 0.9rem;

}


/* =========================================================
   TEXTURES / TINSEL OPTIONS
   ========================================================= */

.option-group {

    max-width: 800px;

    margin-top: 30px;

}


.option-group-title {

    margin-bottom: 14px;

    color: var(--brown) !important;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


.option-pills {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}


.option-pills span {

    display: inline-flex;

    min-height: 39px;

    padding:
        9px
        15px;

    align-items: center;

    border:
        1px solid
        rgba(165, 127, 93, 0.35);

    background:
        rgba(247, 242, 237, 0.78);

    color: var(--brown);

    font-size: 0.74rem;

    font-weight: 500;

    letter-spacing: 0.02em;

}


.tinsel-options span::before {

    content: "✦";

    margin-right: 8px;

    color: var(--deep-gold);

    font-size: 0.7rem;

}


/* =========================================================
   PREPARATION
   ========================================================= */

.prep-section {

    padding:
        clamp(80px, 10vw, 130px)
        0;

    background: var(--champagne);

    text-align: center;

}


.prep-grid {

    display: grid;

    margin-top: 50px;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.prep-grid > div {

    padding: 34px 26px;

    border:
        1px solid
        rgba(75, 56, 44, 0.14);

    background:
        rgba(247, 242, 237, 0.52);

}


.prep-grid span {

    color: var(--deep-gold);

    font-family: var(--heading);

    font-size: 1.5rem;

}


.prep-grid p {

    margin:
        14px
        0
        0;

}


/* =========================================================
   BOOKING CTA
   ========================================================= */

.booking-cta {

    padding:
        clamp(90px, 11vw, 150px)
        0;

    background: var(--brown);

    color: var(--cream);

    text-align: center;

}


.booking-cta h2 {

    color: var(--cream);

}


.booking-cta p:not(.eyebrow) {

    max-width: 620px;

    margin:
        0 auto
        30px;

    color:
        rgba(247, 242, 237, 0.78);

}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-section {

    padding:
        clamp(80px, 10vw, 130px)
        0;

}


.contact-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap:
        clamp(60px, 9vw, 120px);

}


.contact-information {

    align-self: start;

}


.contact-information h2 {

    margin-bottom: 24px;

}


.contact-intro {

    max-width: 480px;

    margin-bottom: 45px;

    color: var(--muted);

}


.contact-item {

    padding:
        25px
        0;

    border-top:
        1px solid var(--border);

}


.contact-label {

    display: block;

    margin-bottom: 8px;

    color: var(--deep-gold);

    font-size: 0.67rem;

    font-weight: 600;

    letter-spacing: 0.15em;

}


.contact-item > a:not(.whatsapp-button) {

    font-family: var(--heading);

    font-size: 1.65rem;

}


.contact-item p {

    margin-bottom: 0;

}


.whatsapp-button {

    display: inline-flex;

    margin-top: 17px;

    padding:
        12px
        18px;

    border:
        1px solid
        var(--deep-gold);

    color: var(--brown);

    font-size: 0.74rem;

    font-weight: 600;

    letter-spacing: 0.06em;

}


.contact-socials {

    display: flex;

    margin:
        30px
        0;

    gap: 14px;

}


.contact-socials a {

    padding-bottom: 3px;

    border-bottom:
        1px solid
        var(--deep-gold);

    font-size: 0.8rem;

}


.contact-form-panel {

    padding:
        clamp(35px, 5vw, 60px);

    background: var(--dark);

    color: var(--cream);

}


.contact-form-panel h2 {

    color: var(--cream);

}


.light-form .form-field input,
.light-form .form-field textarea {

    border-color:
        rgba(247, 242, 237, 0.24);

    color: var(--cream);

}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-section {

    padding:
        clamp(65px, 8vw, 110px)
        0;

}


.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

}


.gallery-grid img {

    width: 100%;

    height: auto;

}


.instagram-follow {

    padding:
        55px
        24px
        0;

    text-align: center;

}


.instagram-button {

    display: inline-flex;

    width: 54px;

    height: 54px;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        var(--deep-gold);

    border-radius: 50%;

}


/* =========================================================
   HAIR / PRICING
   ========================================================= */

.pricing-section,
.hair-pricing-section {

    padding:
        clamp(70px, 9vw, 120px)
        0;

}


.pricing-grid,
.price-guide-grid,
.hair-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;

}


.price-card,
.price-guide-card {

    background: var(--white);

    box-shadow: var(--shadow);

}


.price-guide-image,
.price-card img {

    width: 100%;

    height: auto;

    cursor: zoom-in;

}


.pricing-note {

    max-width: 800px;

    margin:
        55px auto
        0;

    padding: 30px;

    border:
        1px solid var(--border);

    background: var(--champagne);

    text-align: center;

}


/* =========================================================
   AFTERCARE
   ========================================================= */

.aftercare-section {

    padding:
        clamp(70px, 9vw, 120px)
        0;

}


.aftercare-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


.aftercare-card,
.care-card {

    padding:
        clamp(30px, 4vw, 48px);

    border:
        1px solid var(--border);

    background:
        rgba(239, 228, 218, 0.38);

}


.aftercare-card h2,
.care-card h2 {

    font-size:
        clamp(2rem, 3vw, 2.8rem);

}


.aftercare-card ul,
.care-card ul {

    padding-left: 20px;

}


.aftercare-card li,
.care-card li {

    margin-bottom: 10px;

    color: var(--muted);

}


.warning-card {

    margin-top: 25px;

    padding: 35px;

    background: var(--brown);

    color: var(--cream);

}


.warning-card h2 {

    color: var(--cream);

}


/* =========================================================
   ABOUT PAGE
   ========================================================= */

.founder-section {

    display: grid;

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        clamp(75px, 10vw, 130px)
        0;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap:
        clamp(50px, 8vw, 100px);

    align-items: center;

}


.founder-image img {

    width: 100%;

    height: auto;

}


.founder-story p {

    color: var(--muted);

}


.founder-passion-section {

    padding:
        clamp(80px, 10vw, 130px)
        0;

    background: var(--champagne);

    text-align: center;

}


.founder-passion-section blockquote {

    max-width: 850px;

    margin:
        35px auto
        0;

    color: var(--brown);

    font-family: var(--heading);

    font-size:
        clamp(2rem, 4vw, 3.5rem);

    line-height: 1.2;

}


.approach-section,
.coverage-section {

    padding:
        clamp(80px, 10vw, 130px)
        0;

}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {

    position: fixed;

    z-index: 1000;

    inset: 0;

    display: none;

    padding: 30px;

    align-items: center;

    justify-content: center;

    background:
        rgba(23, 17, 14, 0.94);

}


.lightbox.lightbox-open {

    display: flex;

}


.lightbox-image {

    max-width: min(
        900px,
        92vw
    );

    max-height: 90vh;

    object-fit: contain;

}


.lightbox-close {

    position: absolute;

    top: 20px;

    right: 25px;

    border: 0;

    background: none;

    color: var(--cream);

    font-size: 2.5rem;

}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {

    padding:
        70px
        0
        25px;

    background: #251915;

    color:
        rgba(247, 242, 237, 0.75);

}


.footer-inner {

    display: grid;

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    grid-template-columns:
        1.4fr
        1fr
        0.6fr;

    gap: 50px;

}


.footer-brand img {

    width: 120px;

    margin-bottom: 20px;

}


.footer-brand p {

    max-width: 330px;

    font-size: 0.85rem;

}


.footer-links,
.footer-social {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;

}


.footer-links a,
.footer-social a {

    font-size: 0.78rem;

}


.footer-links a:hover,
.footer-social a:hover {

    color: var(--gold);

}


.footer-bottom {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin:
        55px auto
        0;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(247, 242, 237, 0.11);

}


.footer-bottom p {

    margin: 0;

    font-size: 0.7rem;

}


/* =========================================================
   MOBILE BOOKING BAR
   ========================================================= */

.mobile-booking-bar {

    display: none;

}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(20px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .site-nav {

        gap: 17px;

    }


    .site-nav > a {

        font-size: 0.69rem;

    }


    .home-hero-content {

        padding: 60px;

    }


    .service-row {

        grid-template-columns:
            55px
            minmax(0, 1fr)
            140px;

    }

}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {

    .nav-wrap {

        min-height: 92px;

    }


    .brand {

        width: 96px;

    }


    .nav-toggle {

        display: block;

    }


    .site-nav {

        position: absolute;

        top: 92px;

        right: 0;

        left: 0;

        display: none;

        padding:
            25px
            24px
            32px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: var(--cream);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 20px 35px
            rgba(50, 35, 29, 0.08);

    }


    .site-nav.nav-open {

        display: flex;

    }


    .site-nav > a {

        padding:
            15px
            0;

        border-bottom:
            1px solid var(--border);

        font-size: 0.8rem;

    }


    .site-nav > a::after {

        display: none;

    }


    .site-nav .nav-cta {

        margin-top: 18px;

        padding:
            16px
            20px;

        border-bottom: 0;

        text-align: center;

    }


    .nav-toggle.is-open span:nth-child(1) {

        transform:
            translateY(8.5px)
            rotate(45deg);

    }


    .nav-toggle.is-open span:nth-child(2) {

        opacity: 0;

    }


    .nav-toggle.is-open span:nth-child(3) {

        transform:
            translateY(-8.5px)
            rotate(-45deg);

    }


    .home-hero {

        min-height: auto;

        grid-template-columns: 1fr;

    }


    .home-hero-image {

        min-height: 0;

    }


    .home-hero-image img {

        width: 100%;

        height: auto;

        object-fit: initial;

    }


    .home-hero-content {

        padding:
            65px
            32px
            75px;

    }


    .enquiry-layout {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .service-row {

        grid-template-columns:
            50px
            minmax(0, 1fr);

    }


    .service-row-price {

        grid-column: 2;

        align-items: flex-start;

        margin-top: 8px;

        text-align: left;

    }


    .pricing-grid,
    .price-guide-grid,
    .hair-grid {

        grid-template-columns: 1fr;

    }


    .founder-section {

        grid-template-columns: 1fr;

    }


    .footer-inner {

        grid-template-columns:
            1fr 1fr;

    }


    .footer-brand {

        grid-column:
            1 / -1;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 700px) {

    body {

        padding-bottom: 84px;

    }


    .section-inner,
    .section-inner.narrow,
    .service-stack-section,
    .founder-section {

        width:
            min(
                100% - 36px,
                1180px
            );

    }


    .page-hero {

        padding:
            75px
            20px;

    }


    .page-hero h1 {

        font-size:
            clamp(
                2.8rem,
                14vw,
                4.2rem
            );

    }


    .home-hero-content {

        padding:
            55px
            22px
            70px;

    }


    .home-hero-content h1 {

        font-size:
            clamp(
                3.2rem,
                16vw,
                5rem
            );

    }


    .hero-actions {

        align-items: flex-start;

        flex-direction: column;

    }


    .section-heading {

        align-items: flex-start;

        flex-direction: column;

    }


    .home-gallery-grid {

        gap: 7px;

    }


    .home-gallery-grid img {

        aspect-ratio: auto;

        height: auto;

        object-fit: initial;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

        gap: 5px;

    }


    .service-stack-section {

        padding:
            55px
            0;

    }


    .service-row {

        padding:
            45px
            0;

        grid-template-columns: 1fr;

        gap: 11px;

    }


    .service-number {

        grid-column: 1;

        font-size: 1rem;

    }


    .service-row-content {

        grid-column: 1;

    }


    .service-row-price {

        grid-column: 1;

        margin-top: 18px;

    }


    .service-row-feature {

        width:
            calc(100% + 36px);

        margin:
            18px
            -18px;

        padding:
            45px
            18px;

    }


    .service-row-content h2 {

        font-size:
            clamp(
                2.5rem,
                12vw,
                3.4rem
            );

    }


    .method-highlight {

        padding:
            22px
            19px;

    }


    .option-pills {

        gap: 7px;

    }


    .option-pills span {

        padding:
            8px
            11px;

        font-size: 0.68rem;

    }


    .prep-grid {

        grid-template-columns: 1fr;

    }


    .aftercare-grid {

        grid-template-columns: 1fr;

    }


    .contact-form-panel {

        padding:
            35px
            20px;

    }


    .form-field input,
    .form-field textarea {

        font-size: 16px;

    }


    .footer-inner {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }


    .mobile-booking-bar {

        position: fixed;

        z-index: 500;

        right: 18px;

        bottom: 15px;

        left: 18px;

        display: flex;

        min-height: 60px;

        align-items: center;

        justify-content: center;

        border:
            1px solid
            rgba(75, 56, 44, 0.18);

        border-radius: 999px;

        background: var(--gold);

        color: var(--brown);

        box-shadow:
            0 10px 30px
            rgba(35, 24, 20, 0.22);

        font-size: 0.79rem;

        font-weight: 600;

        letter-spacing: 0.04em;

    }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 420px) {

    .nav-wrap {

        width:
            calc(100% - 32px);

    }


    .home-gallery-grid {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

    }


    .gallery-grid {

        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );

    }


    .option-pills span {

        font-size: 0.64rem;

    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    * {

        scroll-behavior: auto !important;

        transition: none !important;

        animation: none !important;

    }


    .reveal {

        opacity: 1;

        transform: none;

    }

}


/* =========================================================
   FINE HAIR SPECIALIST
   ========================================================= */

.fine-hair-highlight {

    max-width: 720px;

    margin:
        38px auto
        34px;

    padding:
        clamp(28px, 4vw, 42px);

    border:
        1px solid
        rgba(165, 127, 93, 0.34);

    background:
        linear-gradient(
            135deg,
            rgba(239, 228, 218, 0.72),
            rgba(247, 242, 237, 0.9)
        );

    box-shadow:
        0 16px 40px
        rgba(75, 56, 44, 0.06);

}


.fine-hair-highlight .fine-hair-kicker {

    margin-bottom: 10px;

    color: var(--deep-gold);

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.fine-hair-highlight h3 {

    margin-bottom: 14px;

    font-size:
        clamp(2rem, 4vw, 2.8rem);

}


.home-intro .fine-hair-highlight p:last-child {

    margin-bottom: 0;

    color: var(--muted);

    font-size: 0.94rem;

}


/* =========================================================
   TYPOGRAPHY DETAILS USED BY EARLIER PAGES
   ========================================================= */

h1 em,
h2 em {

    color: var(--deep-gold);

    font-weight: 400;

}


.light-eyebrow {

    color: var(--gold);

}


.cream-button {

    background: var(--cream);

    color: var(--brown);

}


.cream-button:hover {

    background: var(--gold);

}


.outline-light-button {

    border-color:
        rgba(247, 242, 237, 0.55);

    background: transparent;

    color: var(--cream);

}


.outline-light-button:hover {

    border-color: var(--gold);

    background:
        rgba(247, 242, 237, 0.06);

}


/* =========================================================
   EARLIER NAVIGATION MARKUP
   Gallery / Hair & Pricing / Aftercare / About
   ========================================================= */

.navbar {

    position: relative;

    z-index: 100;

    display: flex;

    min-height: 108px;

    padding:
        0
        max(
            24px,
            calc((100vw - 1380px) / 2)
        );

    align-items: center;

    justify-content: space-between;

    background:
        rgba(247, 242, 237, 0.97);

    border-bottom:
        1px solid var(--border);

}


.nav-logo {

    display: flex;

    width: 118px;

    align-items: center;

}


.nav-logo img {

    width: 100%;

    height: auto;

}


#navigation {

    display: flex;

    align-items: center;

    gap: 28px;

}


#navigation > a {

    position: relative;

    color: var(--brown);

    font-size: 0.76rem;

    font-weight: 500;

    letter-spacing: 0.06em;

}


#navigation > a:not(.nav-book)::after {

    content: "";

    position: absolute;

    right: 0;

    bottom: -9px;

    left: 0;

    height: 1px;

    background: var(--deep-gold);

    transform: scaleX(0);

    transform-origin: center;

    transition:
        transform 0.2s ease;

}


#navigation > a:not(.nav-book):hover::after,
#navigation > a.active::after {

    transform: scaleX(1);

}


#navigation .nav-book {

    padding:
        13px
        20px;

    background: var(--brown);

    color: var(--cream);

}


.menu-button {

    display: none;

    width: 48px;

    height: 48px;

    padding: 10px;

    border: 0;

    background: transparent;

}


.menu-button span {

    display: block;

    width: 100%;

    height: 1.5px;

    margin: 8px 0;

    background: var(--brown);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;

}


/* =========================================================
   PAGE HERO SUPPORT FOR BOTH MARKUP VERSIONS
   ========================================================= */

.page-hero {

    text-align: center;

}


.page-hero > h1 {

    max-width: 900px;

    margin:
        0 auto;

}


.page-hero > p:not(.eyebrow) {

    max-width: 680px;

    margin:
        26px auto
        0;

    color: var(--muted);

}


/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-instagram-top {

    display: flex;

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        55px
        0
        15px;

    align-items: center;

    justify-content: center;

    gap: 22px;

    text-align: center;

}


.gallery-instagram-message p {

    margin-bottom: 2px;

    color: var(--brown);

    font-family: var(--heading);

    font-size: 1.45rem;

    font-weight: 600;

}


.gallery-instagram-message span {

    color: var(--muted);

    font-size: 0.82rem;

}


.instagram-icon-button {

    display: inline-flex;

    width: 54px;

    height: 54px;

    flex: 0 0 54px;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--deep-gold);

    border-radius: 50%;

    transition:
        transform 0.2s ease,
        background 0.2s ease;

}


.instagram-icon-button:hover {

    transform: translateY(-2px);

    background: var(--champagne);

}


.instagram-icon-button svg {

    width: 23px;

    height: 23px;

    fill: none;

    stroke: var(--brown);

    stroke-width: 1.6;

}


.instagram-icon-button .instagram-dot {

    fill: var(--brown);

    stroke: none;

}


.gallery-grid-section {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        50px
        0
        clamp(80px, 10vw, 130px);

}


.gallery-photo {

    overflow: hidden;

    background: var(--champagne);

}


.gallery-photo img {

    width: 100%;

    height: auto;

}


/* =========================================================
   SHARED CTA USED BY GALLERY / HAIR PAGES
   ========================================================= */

.page-booking-cta {

    padding:
        clamp(90px, 11vw, 150px)
        24px;

    background: var(--brown);

    color: var(--cream);

    text-align: center;

}


.page-booking-cta h2 {

    max-width: 850px;

    margin:
        0 auto
        22px;

    color: var(--cream);

}


.page-booking-cta > p:not(.eyebrow) {

    max-width: 620px;

    margin:
        0 auto
        30px;

    color:
        rgba(247, 242, 237, 0.78);

}


/* =========================================================
   HAIR & PRICING PAGE
   ========================================================= */

.hair-page-section {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        clamp(70px, 9vw, 120px)
        0;

}


.hair-range {

    position: relative;

    display: grid;

    padding:
        clamp(40px, 5vw, 62px)
        0;

    grid-template-columns:
        minmax(180px, 0.52fr)
        minmax(0, 1.48fr);

    gap:
        clamp(35px, 6vw, 85px);

    align-items: start;

    border-bottom:
        1px solid var(--border);

}


.hair-range:first-child {

    border-top:
        1px solid var(--border);

}


.hair-range.highlighted-range {

    margin:
        24px
        -28px;

    padding:
        clamp(40px, 5vw, 62px)
        28px;

    background:
        rgba(239, 228, 218, 0.48);

}


.hair-range-title > span {

    display: block;

    margin-bottom: 10px;

    color: var(--deep-gold);

    font-family: var(--heading);

    font-size: 1.35rem;

}


.hair-range-title h2 {

    margin-bottom: 10px;

    font-size:
        clamp(2.5rem, 5vw, 4rem);

}


.hair-range-title p {

    color: var(--muted);

    font-size: 0.88rem;

}


.range-badge {

    position: absolute;

    top: 22px;

    right: 28px;

    padding:
        8px
        12px;

    border:
        1px solid
        rgba(165, 127, 93, 0.35);

    background: var(--cream);

    color: var(--deep-gold);

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.14em;

}


.price-guide-button {

    width: 100%;

    max-width: 760px;

    padding: 0;

    border: 0;

    background: transparent;

    text-align: left;

}


.price-guide-button img {

    width: 100%;

    height: auto;

    border:
        1px solid var(--border);

    box-shadow: var(--shadow);

}


.price-guide-button > span {

    display: inline-block;

    margin-top: 12px;

    color: var(--deep-gold);

    font-size: 0.69rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

}


.pricing-information {

    max-width: 840px;

    margin:
        clamp(70px, 9vw, 110px)
        auto
        0;

    padding:
        clamp(35px, 5vw, 55px);

    border:
        1px solid var(--border);

    background: var(--champagne);

    text-align: center;

}


.pricing-information h2 {

    margin-bottom: 22px;

}


.pricing-information p:not(.eyebrow) {

    color: var(--muted);

}


/* Existing Hair page lightbox */

.gallery-lightbox {

    position: fixed;

    z-index: 1200;

    inset: 0;

    display: none;

    padding: 30px;

    align-items: center;

    justify-content: center;

    background:
        rgba(23, 17, 14, 0.95);

}


.gallery-lightbox.gallery-lightbox-open {

    display: flex;

}


.gallery-lightbox img {

    max-width: min(
        920px,
        94vw
    );

    max-height: 90vh;

    object-fit: contain;

}


.gallery-close {

    position: absolute;

    top: 18px;

    right: 24px;

    border: 0;

    background: transparent;

    color: var(--cream);

    font-size: 2.6rem;

    line-height: 1;

}


/* =========================================================
   AFTERCARE PAGE
   ========================================================= */

.aftercare-page {

    display: grid;

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin: 0 auto;

    padding:
        clamp(70px, 9vw, 120px)
        0;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}


.aftercare-page article {

    padding:
        clamp(30px, 4vw, 48px);

    border:
        1px solid var(--border);

    background:
        rgba(239, 228, 218, 0.38);

}


.aftercare-page article > span {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--deep-gold);

    font-family: var(--heading);

    font-size: 1.3rem;

}


.aftercare-page article h2 {

    margin-bottom: 22px;

    font-size:
        clamp(2rem, 3vw, 2.8rem);

}


.aftercare-page article ul {

    margin-bottom: 0;

    padding-left: 20px;

}


.aftercare-page article li {

    margin-bottom: 10px;

    color: var(--muted);

}


.aftercare-page .aftercare-highlight {

    background:
        rgba(201, 170, 138, 0.22);

}


.aftercare-warning {

    width: min(
        1180px,
        calc(100% - 48px)
    );

    margin:
        0 auto
        clamp(80px, 10vw, 130px);

    padding:
        clamp(30px, 5vw, 50px);

    background: var(--brown);

    color: var(--cream);

    text-align: center;

}


.aftercare-warning strong {

    display: block;

    margin-bottom: 8px;

    color: var(--gold);

    font-family: var(--heading);

    font-size: 1.75rem;

}


.aftercare-warning p {

    max-width: 720px;

    margin:
        0 auto;

    color:
        rgba(247, 242, 237, 0.82);

}


/* =========================================================
   ABOUT PAGE - COMPLETE SUPPORT
   ========================================================= */

.founder-image {

    position: relative;

}


.founder-image-label {

    position: absolute;

    right: 18px;

    bottom: 18px;

    left: 18px;

    padding:
        16px
        18px;

    background:
        rgba(50, 35, 29, 0.9);

    color: var(--cream);

}


.founder-image-label span {

    display: block;

    color: var(--gold);

    font-size: 0.62rem;

    font-weight: 600;

    letter-spacing: 0.16em;

}


.founder-image-label strong {

    font-family: var(--heading);

    font-size: 1.4rem;

    font-weight: 500;

}


.founder-story h1 {

    margin-bottom: 28px;

    font-size:
        clamp(3rem, 6vw, 5.6rem);

}


.founder-passion-heading,
.founder-passion-copy {

    width: min(
        900px,
        calc(100% - 48px)
    );

    margin:
        0 auto;

}


.founder-passion-copy {

    margin-top: 35px;

}


.founder-passion-copy > p {

    max-width: 700px;

    margin:
        0 auto
        20px;

    color: var(--muted);

}


.founder-passion-section blockquote {

    padding:
        18px
        0;

}


.approach-section {

    display: grid;

    padding:
        clamp(80px, 10vw, 130px)
        max(
            24px,
            calc((100vw - 1180px) / 2)
        );

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap:
        clamp(45px, 8vw, 100px);

    background: var(--brown);

    color: var(--cream);

}


.approach-section h2 {

    color: var(--cream);

}


.approach-copy p {

    color:
        rgba(247, 242, 237, 0.8);

}


.about-social-buttons {

    display: flex;

    margin-top: 30px;

    gap: 12px;

    flex-wrap: wrap;

}


.coverage-section {

    padding:
        clamp(80px, 10vw, 130px)
        24px;

    text-align: center;

}


.coverage-section h2 {

    margin-bottom: 20px;

}


.coverage-summary {

    max-width: 720px;

    margin:
        0 auto;

    color: var(--muted);

}


.coverage-question {

    max-width: 720px;

    margin:
        35px auto
        0;

    padding:
        25px;

    border:
        1px solid var(--border);

    background: var(--champagne);

}


/* =========================================================
   EARLIER FOOTER MARKUP
   ========================================================= */

.site-footer > img {

    width: 120px;

    margin:
        0 auto
        24px;

}


.footer-navigation {

    display: flex;

    margin:
        0 auto
        18px;

    align-items: center;

    justify-content: center;

    gap:
        12px
        22px;

    flex-wrap: wrap;

}


.footer-navigation a {

    font-size: 0.76rem;

}


.footer-socials {

    display: flex;

    margin-bottom: 20px;

    align-items: center;

    justify-content: center;

    gap: 10px;

    font-size: 0.76rem;

}


.site-footer > small {

    display: block;

    text-align: center;

    font-size: 0.7rem;

}


/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thank-you-section {

    display: flex;

    min-height:
        calc(100vh - 108px);

    padding:
        80px
        24px;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--cream),
            var(--champagne)
        );

}


.thank-you-card {

    width: min(
        720px,
        100%
    );

    padding:
        clamp(40px, 7vw, 75px);

    border:
        1px solid var(--border);

    background:
        rgba(247, 242, 237, 0.82);

    text-align: center;

    box-shadow: var(--shadow);

}


.thank-you-card h1 {

    margin-bottom: 20px;

}


.thank-you-card > p:not(.eyebrow) {

    max-width: 520px;

    margin:
        0 auto
        30px;

    color: var(--muted);

}


.thank-you-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    flex-wrap: wrap;

}


/* =========================================================
   EARLIER MOBILE BOOKING LINK
   ========================================================= */

.mobile-book {

    display: none;

}


/* =========================================================
   RESPONSIVE SUPPORT FOR EARLIER PAGES
   ========================================================= */

@media (max-width: 1100px) {

    #navigation {

        gap: 17px;

    }


    #navigation > a {

        font-size: 0.69rem;

    }

}


@media (max-width: 900px) {

    .navbar {

        min-height: 92px;

        padding:
            0
            24px;

    }


    .nav-logo {

        width: 96px;

    }


    .menu-button {

        display: block;

    }


    #navigation {

        position: absolute;

        top: 92px;

        right: 0;

        left: 0;

        display: none;

        padding:
            25px
            24px
            32px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        background: var(--cream);

        border-top:
            1px solid var(--border);

        box-shadow:
            0 20px 35px
            rgba(50, 35, 29, 0.08);

    }


    #navigation.nav-open {

        display: flex;

    }


    #navigation > a {

        padding:
            15px
            0;

        border-bottom:
            1px solid var(--border);

        font-size: 0.8rem;

    }


    #navigation > a::after {

        display: none;

    }


    #navigation .nav-book {

        margin-top: 18px;

        padding:
            16px
            20px;

        border-bottom: 0;

        text-align: center;

    }


    .menu-button.is-open span:nth-child(1) {

        transform:
            translateY(4.75px)
            rotate(45deg);

    }


    .menu-button.is-open span:nth-child(2) {

        transform:
            translateY(-4.75px)
            rotate(-45deg);

    }


    .hair-range {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .range-badge {

        position: static;

        display: inline-block;

        width: fit-content;

        margin-bottom: 16px;

    }


    .approach-section {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 700px) {

    .gallery-instagram-top {

        width:
            calc(100% - 36px);

        padding-top: 42px;

        flex-direction: column;

        gap: 15px;

    }


    .gallery-grid-section,
    .hair-page-section,
    .aftercare-page,
    .aftercare-warning {

        width:
            calc(100% - 36px);

    }


    .aftercare-page {

        grid-template-columns: 1fr;

    }


    .hair-range.highlighted-range {

        width:
            calc(100% + 36px);

        margin:
            18px
            -18px;

        padding:
            42px
            18px;

    }


    .founder-image-label {

        right: 10px;

        bottom: 10px;

        left: 10px;

    }


    .about-social-buttons {

        flex-direction: column;

    }


    .about-social-buttons .button {

        width: 100%;

    }


    .mobile-book {

        position: fixed;

        z-index: 500;

        right: 18px;

        bottom: 15px;

        left: 18px;

        display: flex;

        min-height: 60px;

        align-items: center;

        justify-content: center;

        border:
            1px solid
            rgba(75, 56, 44, 0.18);

        border-radius: 999px;

        background: var(--gold);

        color: var(--brown);

        box-shadow:
            0 10px 30px
            rgba(35, 24, 20, 0.22);

        font-size: 0.79rem;

        font-weight: 600;

        letter-spacing: 0.04em;

    }


    .fine-hair-highlight {

        margin:
            30px auto;

        padding:
            26px
            20px;

    }

}