/* ----------------------------------------------
   1. Reset & Variables
----------------------------------------------- */
:root {
    --pgw-primary: #9A5B48;
    /* warm brown */
    --pgw-accent: #C1A59B;
    /* soft taupe */
    --pgw-cream: #FFF9F5;
    /* warm off-white */
    --pgw-blush: #D8A89F;
    /* muted blush */
    --pgw-dark: #5A443C;
    /* deep brown */
    --pgw-text: #4A3C36;
    /* body text */

    --font-script: 'Great Vibes', cursive;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --radius-soft: 0.5rem;
    --radius-round: 3.125rem;
    --shadow-soft: 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
    --shadow-card: 0 0.375rem 1.56rem rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--pgw-text);
    background-color: var(--pgw-cream);
    line-height: 1.65;
    font-size: 1rem;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.main-nav ul,
.social-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}


/* ----------------------------------------------
   2. Typography
----------------------------------------------- */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--pgw-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.7rem;
    line-height: 1.2;
    letter-spacing: -0.03rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4.375rem;
    height: 0.125rem;
    background-color: var(--pgw-accent);
}

h3 {
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--pgw-primary);
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}


/* ----------------------------------------------
   3. Layout
----------------------------------------------- */
.container {
    width: min(90%, 75rem);
    margin-inline: auto;
}

section {
    padding: 5rem 0;
}


/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.7rem;
    border-radius: var(--radius-round);
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.3s ease;
    line-height: 1.2;
}

.btn:focus-visible,
.social-btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--pgw-blush);
    outline-offset: 4px;
}

.btn-primary {
    background-color: var(--pgw-primary);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background-color: var(--pgw-dark);
}

.btn-secondary {
    border-color: var(--pgw-primary);
    color: var(--pgw-primary);
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--pgw-primary);
    color: #fff;
}


/* ----------------------------------------------
   4. Header
----------------------------------------------- */
.site-header {
    background-color: var(--pgw-cream);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 3.25rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    color: var(--pgw-dark);
    font-size: 1rem;
}

.main-nav a:hover {
    color: var(--pgw-primary);
}


/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 0.3125rem;
}

.bar {
    width: 1.625rem;
    height: 0.1875rem;
    background-color: var(--pgw-dark);
}


/* ----------------------------------------------
   5. Hero
----------------------------------------------- */
.hero-section {
    position: relative;
    height: 82vh;
    height: 82svh;
    min-height: 32.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-align: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: brightness(0.9);
}

/* Subtle overlay to unify hero images */
.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(154, 91, 72, 0.1);
    /* Slight warm tint */
    mix-blend-mode: multiply;
}

.hero-content {
    max-width: 48.75rem;
    padding: 2.5rem;
}

.hero-logo {
    max-width: 37.5rem;
    margin-bottom: 1.3rem;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}


/* ----------------------------------------------
   6. About
----------------------------------------------- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
    width: 100%;
}

/* About: stop the image overpowering the text on desktop */
@media (min-width: 901px) {
    .about-container {
        grid-template-columns: minmax(0, 26rem) 1.2fr;
        gap: 3rem;
        align-items: start;
    }

    .about-image {
        justify-self: end;
    }

    .about-image img {
        max-height: clamp(22rem, 55vh, 32rem);
        object-fit: cover;
        object-position: top center;
    }
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

/* About Page (Full Bio) */
.about-page-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-header {
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-image-full {
    max-width: 400px;
    margin: 0 auto;
}

.about-image-full img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 2fr;
        align-items: start;
    }

    .about-image-full {
        margin: 0;
        position: sticky;
        top: 100px;
    }
}

.callout-panel {
    background-color: #fff;
    padding: 1.5rem;
    border-left: 0.25rem solid var(--pgw-accent);
    border-radius: var(--radius-soft);
    font-style: italic;
    margin-top: 2rem;
    box-shadow: var(--shadow-soft);
}

.journey-container {
    margin-top: 3.5rem;
    max-width: 50rem;
    text-align: center;
}


/* ----------------------------------------------
   7. Services
----------------------------------------------- */
.services-section .services-intro {
    max-width: 46.875rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
    gap: 2rem;
}

.treatment-card {
    background-color: #fff;
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: var(--shadow-card);
}

.treatment-img {
    height: 13.75rem;
    overflow: hidden;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-info {
    text-align: center;
    padding: 1.7rem;
}

/* Treatment Benefits List */
.benefits-container {
    margin-top: 1.5rem;
    text-align: left;
    /* ensure left alignment as requested */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.25rem;
}

.benefits-title {
    font-weight: 600;
    color: var(--pgw-primary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    text-align: left;
    /* clarify left align for title too */
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--pgw-text);
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--pgw-accent);
    transform: rotate(45deg);
    /* Diamond shape */
}

/* Treatment Badge (Signature / Add-On pill) */
.treatment-badge {
    display: inline-block;
    background-color: var(--pgw-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-round);
    margin-bottom: 0.75rem;
    width: fit-content;
}

.treatment-badge--addon {
    background-color: var(--pgw-accent);
    color: var(--pgw-dark);
}

/* Featured Treatment Card (full-width, same visual style) */
.treatment-card.treatment-card--featured {
    grid-column: 1 / -1;
}

.treatment-card--featured .treatment-img {
    height: 18rem;
}

.treatment-card--featured .treatment-info p:not(.duration):not(.benefits-title) {
    column-count: 2;
    column-gap: 2.5rem;
    text-align: left;
}

@media (max-width: 900px) {
    .treatment-card--featured .treatment-info p:not(.duration):not(.benefits-title) {
        column-count: 1;
        text-align: center;
    }

    .treatment-card--featured .treatment-img {
        height: 13.75rem;
    }
}


/* Add-Ons Section */
.addons-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.addons-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--pgw-dark);
    margin-bottom: 0.5rem;
}

.addons-intro {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    color: var(--pgw-text);
    opacity: 0.85;
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.addon-card {
    display: grid;
    grid-template-columns: 12rem 1fr;
    background-color: #fff;
    border-radius: var(--radius-soft);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-0.15rem);
    box-shadow: var(--shadow-card);
}

.addon-img {
    overflow: hidden;
}

.addon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.addon-info {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

.addon-info h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--pgw-primary);
    margin-bottom: 0.2rem;
}

.addon-info .duration {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.addon-info p {
    font-size: 0.9rem;
    line-height: 1.55;
}

.addon-info .benefits-container {
    font-size: 0.9rem;
}

.addon-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--pgw-accent);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.addon-notice {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--pgw-primary);
    opacity: 0.85;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.addon-info .treatment-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        grid-template-columns: 8rem 1fr;
    }

    .addon-info {
        padding: 1rem;
    }
}

/* ----------------------------------------------
   8. Reviews
----------------------------------------------- */
.testimonials {
    background-color: #fff;
}

.testimonials-intro {
    text-align: center;
    font-style: italic;
    max-width: 40.625rem;
    margin: 0 auto 3rem;
    color: var(--pgw-primary);
    font-size: 1.2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--pgw-cream);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-0.375rem);
    box-shadow: var(--shadow-card);
}

/* Reviews Page Specifics */
.reviews-section {
    background-color: #fff;
    padding: 4rem 0;
    min-height: 60vh;
}

.reviews-container {
    max-width: 800px;
}

.reviews-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-page-header h1 {
    margin-bottom: 1rem;
}

.reviews-page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.review-card {
    /* Extending testimonial-card */
    border-left: 4px solid var(--pgw-blush);
    /* Keeping the nice accent edge from original design */
}

.review-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--pgw-text);
}

.review-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--pgw-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-dash {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: currentColor;
}

.reviews-cta {
    margin-top: 4rem;
    text-align: center;
}

/* --- Breadcrumbs --- */
.breadcrumb-nav {
    padding: 1rem 0;
    background-color: var(--pgw-cream);
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--pgw-primary);
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
    color: var(--pgw-accent);
}

.breadcrumb-nav [aria-current="page"] {
    color: var(--pgw-text);
}

/* --- Section Formatting --- */
.section-quote {
    font-style: italic;
    color: var(--pgw-primary);
    font-weight: 500;
}

.hero-quote {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    color: var(--pgw-primary);
    font-weight: 500;
}

/* --- Page Layouts --- */
.page-container {
    padding: 4rem 1rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-inline: auto;
}

.large-text-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.intro-offer-block {
    margin-top: 2rem;
}

.intro-offer-text {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--pgw-primary);
    font-size: 1.1rem;
}

/* --- Retreat Section --- */
.retreat-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.retreat-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
}

.retreat-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.retreat-content {
    max-width: 700px;
    text-align: center;
}

.retreat-content h2 {
    margin-bottom: 1rem;
    color: var(--pgw-primary);
}

.retreat-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.retreat-quote {
    font-style: italic;
    color: var(--pgw-dark);
    font-weight: 500;
}

/* --- Contact Section --- */
.reassurance-text {
    margin-top: 1.5rem;
    font-style: italic;
}

.form-message {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    display: none;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Strands --- */
.strand-subtitle {
    font-style: italic;
    color: var(--pgw-primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* --- Standalone Pages (404, Privacy) --- */
.error-page-section {
    min-height: 60vh;
    height: auto;
}

.error-page-header h1 {
    color: var(--pgw-dark);
    margin-bottom: 2rem;
}

.privacy-section h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section a {
    color: var(--pgw-primary);
    font-weight: 600;
}

/* --- Layout Utilities --- */
.max-width-800 {
    max-width: 800px !important;
}

.max-width-1000 {
    max-width: 1000px !important;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 3rem;
}

.text-center {
    text-align: center;
}

.cta-container {
    margin-top: 3rem;
    text-align: center;
}

.testimonials-footer {
    text-align: center;
    margin-top: 2rem;
}

.text-link-premium {
    color: var(--pgw-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    transition: 0.2s ease;
}

.text-link-premium:hover {
    color: var(--pgw-accent);
    opacity: 0.8;
}





/* ----------------------------------------------
   9. Contact
----------------------------------------------- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-details a {
    color: var(--pgw-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--pgw-dark);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border-radius: var(--radius-soft);
    border: 1px solid var(--pgw-accent);
}

.label-optional {
    font-weight: 400;
    font-size: 0.85em;
    color: var(--pgw-accent);
}

/* ----------------------------------------------
   10. Footer
----------------------------------------------- */
.site-footer {
    background-color: var(--pgw-dark);
    color: var(--pgw-cream);
    padding: 2.5rem 0;
    text-align: center;
}

.site-footer a {
    color: var(--pgw-blush);
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    font-size: 1.1rem;
    font-weight: 500;
}


/* ----------------------------------------------
   11. Fade-in Animations
----------------------------------------------- */
.fade-in-section {
    opacity: 0;
    transform: translateY(1.56rem);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}


/* ----------------------------------------------
   12. Mobile Responsiveness
----------------------------------------------- */
@media (max-width: 900px) {

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--pgw-cream);
        padding: 1rem 0;
        display: none;
        box-shadow: var(--shadow-soft);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }

    .hero-section {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        /* Start from top, respecting padding */
        padding-top: 0;
    }

    .hero-content {
        padding: 8rem 1rem 4rem 1rem;
        /* More top padding to clear header */
    }
}

@media (min-width: 769px) and (max-width: 1366px) {

    /* New rule for tablet/medium/laptop screens */
    .hero-section {
        height: auto;
        min-height: 80vh;
        align-items: flex-start;
        padding-top: 6rem;
        /* Ensure content starts below header */
    }

    .hero-content {
        padding-top: 4rem;
    }

    .hero-img {
        object-position: center 30%;
        /* Shift image focus slightly up if needed */
    }

    .hero-logo {
        max-width: 25rem;
        /* limit logo width on mobile */
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        /* full width buttons on mobile */
        justify-content: center;
    }

    .lead-line {
        font-size: 1.15rem;
        /* slightly smaller lead */
    }

    .treatment-img {
        height: 11.25rem;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-0.3125rem);
}

.benefit-icon {
    height: 3.75rem;
    width: auto;
    margin: 0 auto 1.5rem;
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--pgw-dark);
}


/* Utility: Visually Hidden (for accessibility/honeypots) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Updates */
.lead-line {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--pgw-dark);
    margin-bottom: 1.5rem;
}

.hero-intro {
    max-width: 40rem;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.hero-showpiece {
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--pgw-primary);
}

.hero-trust {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--pgw-text);
    opacity: 0.8;
}

/* About Page Cleanup & Refresh */
.about-page-section {
    background-color: #fff;
    padding: 6rem 0;
}

.about-page-layout .page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 900px) {
    .about-content {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 5rem;
        align-items: start;
    }
}

.about-image-card {
    background-color: var(--pgw-cream);
    padding: 1.5rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-card);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.about-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image-card img {
    border-radius: 4px;
    width: 100%;
}

.about-text-content p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-closing {
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--pgw-cream);
    border-radius: var(--radius-soft);
    border-left: 5px solid var(--pgw-blush);
    position: relative;
    font-style: italic;
}

.about-closing p {
    margin-bottom: 0;
    color: var(--pgw-dark);
    font-weight: 500;
}

/* Strands Section */
.strands-section {
    background-color: #fff;
}

.strands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 56rem;
    margin-inline: auto;
}

.strand-card {
    background-color: var(--pgw-cream);
    padding: 2rem;
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.strand-card:hover {
    transform: translateY(-0.3rem);
}

.strand-card h3 {
    color: var(--pgw-primary);
    margin-bottom: 1rem;
}

.strands-note {
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.8;
    max-width: 40rem;
    margin-inline: auto;
}

/* Treatments Updates */
.treatments-intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.pricing-line {
    margin-top: 1.5rem;
    font-weight: 500;
    color: var(--pgw-primary);
    font-size: 1rem;
}

.treatment-info .duration {
    font-size: 0.9rem;
    color: var(--pgw-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Contact Updates */
.contact-body {
    margin-bottom: 2rem;
}

.contact-body ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.contact-body li {
    margin-bottom: 0.5rem;
    padding-left: 0.3rem;
}

.contact-prefer {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.strand-icon {
    height: 5.6rem;
    width: auto;
    margin: 0 auto 1.5rem;
}

/* ----------------------------------------------
   14. Social Follow Section
----------------------------------------------- */
.social-follow {
    background-color: var(--pgw-cream);
    text-align: center;
    padding: 5rem 0;
}

.social-follow h2 {
    margin-bottom: 1rem;
}

.social-follow p {
    max-width: 35rem;
    margin: 0 auto 2rem;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.social-btn--messenger,
.social-btn--instagram,
.social-btn--facebook {
    background-color: var(--pgw-primary);
    color: #fff;
}

.social-btn--messenger:hover,
.social-btn--instagram:hover,
.social-btn--facebook:hover {
    background-color: var(--pgw-dark);
    color: #fff;
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}

.social-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 1.5rem;
}

/* Footer Social Updates */
.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pgw-blush);
    font-weight: 500;
    text-decoration: none;
}

.footer-social:hover {
    color: #fff;
    text-decoration: none;
}

.footer-social__icon {
    width: 1.1rem;
    height: 1.1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-social:hover .footer-social__icon {
    opacity: 1;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .social-buttons {
        flex-direction: column;
        align-items: stretch;
        padding: 0 1rem;
    }

    .social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* ----------------------------------------------
   15. Opening Hours
----------------------------------------------- */
.opening-hours {
    position: relative;
    overflow: hidden;
    background-color: var(--pgw-cream);
    padding: 5rem 0;
}

/* Watercolour-style background using radial gradients */
.opening-hours::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 10% 15%, rgba(216, 168, 159, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 35% 45% at 85% 20%, rgba(193, 165, 155, 0.3) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 75% 80%, rgba(216, 168, 159, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 30% 35% at 20% 85%, rgba(193, 165, 155, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 25% 30% at 50% 50%, rgba(154, 91, 72, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.opening-hours .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hours-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(90, 68, 60, 0.12);
    border-radius: var(--radius-soft);
    padding: 3.5rem 4rem;
    max-width: 32rem;
    width: 100%;
    text-align: center;
}

.hours-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--pgw-dark);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
    padding-bottom: 0;
}

.hours-title::after {
    display: none;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    transition: background-color 0.2s ease;
}

.hours-table tr:hover {
    background-color: rgba(216, 168, 159, 0.08);
}

.hours-table td {
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pgw-dark);
    font-weight: 500;
}

.hours-day {
    text-align: left;
    font-weight: 600;
}

.hours-time {
    text-align: right;
}

.hours-muted td {
    color: var(--pgw-accent);
    font-weight: 400;
}

@media (max-width: 600px) {
    .hours-card {
        padding: 2.5rem 1.8rem;
    }

    .hours-title {
        font-size: 2rem;
    }

    .hours-table td {
        font-size: 0.9rem;
        padding: 0.55rem 0.3rem;
        letter-spacing: 0.05em;
    }
}


/* ----------------------------------------------
   16. Tropic Skincare Link
----------------------------------------------- */
.tropic-link {
    margin-top: 1.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.tropic-link__anchor {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1.2rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-soft);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.tropic-link__anchor:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    border-color: var(--pgw-accent);
}

.tropic-link__logo {
    width: 120px;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.tropic-link__anchor:hover .tropic-link__logo {
    opacity: 1;
}

.tropic-link__label {
    font-weight: 600;
    color: var(--pgw-primary);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.tropic-link__tagline {
    font-size: 0.85rem;
    color: var(--pgw-text);
    opacity: 0.75;
    line-height: 1.4;
}

.designer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1.5rem;
}