/* ========================================
   GLAMBYVERONICA - Hair & Makeup Artist
   ======================================== */

/* CSS Variables */
:root {
    --blush: #C4A09A;
    --blush-dark: #AD8880;
    --blush-light: #D8BCB8;
    --cream: #F8F4F2;
    --white: #FFFFFF;
    --charcoal: #2A2A2A;
    --text: #4A3F3C;
    --text-light: #8A7A77;
    --border: #E0D5D2;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', sans-serif;
    --section-padding: 100px;
    --nav-height: 90px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    border-radius: 0;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--text);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}
.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--charcoal);
}
.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--charcoal);
    height: var(--nav-height);
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }

.nav-left a, .nav-right a {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 3px;
}

.nav-left a::after, .nav-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
    width: 100%;
}

.nav-left a.active,
.nav-right a.active {
    opacity: 1;
    font-weight: 400;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    text-align: center;
    white-space: nowrap;
}

.logo:hover { opacity: 0.85; }

/* ========================================
   BOTTOM APP NAV (mobile only)
   ======================================== */
.bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
        /* Force GPU compositing — keeps element pinned on iOS Safari & Chrome Android */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: bottom;
    }

    .bottom-nav a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: var(--text-light);
        font-family: var(--font-body);
        font-size: 0.6rem;
        font-weight: 400;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s ease;
        padding: 4px 0;
    }

    .bottom-nav a svg {
        width: 22px;
        height: 22px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s ease;
    }

    .bottom-nav a.active,
    .bottom-nav a:hover {
        color: var(--blush-dark);
    }

    .bottom-nav a.active svg {
        stroke-width: 2;
    }

    /* Add bottom padding to body so content clears the nav */
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--charcoal);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer * { color: rgba(255, 255, 255, 0.6); }
.footer a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-brand .logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.82rem;
    letter-spacing: 1px;
    font-weight: 300;
}

.footer-social p {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    transition: color 0.2s;
}

.footer-social-item svg {
    width: 16px;
    height: 16px;
    fill: rgba(255,255,255,0.6);
    flex-shrink: 0;
    transition: fill 0.2s;
}

.footer-social-item:hover svg {
    fill: rgba(255,255,255,0.9);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.footer-legal-links {
    margin-bottom: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-legal-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.35);
}

/* Legal pages */
.legal-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--text);
}

.legal-intro {
    font-size: 1rem;
}

.legal-contact {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.legal-contact a {
    color: var(--blush-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-contact a:hover {
    color: var(--charcoal);
}

/* ========================================
   HOME PAGE - HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 40% 40%;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.38) 0%,
        rgba(0,0,0,0.52) 50%,
        rgba(0,0,0,0.62) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 5%;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 5px;
    /* Compensate for letter-spacing overhang so text stays visually centred */
    margin-right: -5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.8rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease-out 0.4s both;
    letter-spacing: 2px;
}

.hero-rule {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.5);
    margin: 0 auto 28px;
    animation: fadeUp 0.8s ease-out 0.55s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 52px;
    animation: fadeUp 0.8s ease-out 0.65s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero-social {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 24px;
    animation: fadeUp 0.8s ease-out 1s both;
}

.hero-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-social-btn svg {
    width: 18px;
    height: 18px;
}

.hero-social-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.page-hero {
    height: 220px;
    background: var(--charcoal);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 32px;
    padding-top: var(--nav-height);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
}

.about-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    overflow: hidden;
    background: var(--cream);
}

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

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 32px;
    bottom: 32px;
    border: 1px solid var(--blush-light);
    z-index: -1;
}

.about-content { padding: 12px 0; }

.about-content .section-label { color: var(--blush-dark); }

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 28px;
}

.about-content p {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.services-section .section-title { color: var(--charcoal); }

.services-image-banner {
    width: 100%;
    max-height: 280px;
    overflow: hidden;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image-banner img {
    max-width: 460px;
    width: 70%;
    height: auto;
    object-fit: contain;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--white);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    z-index: 1;
}

.service-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--blush-light);
    line-height: 1;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.9rem;
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-top: 12px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 6px 0 6px 18px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.service-features li:last-child { border-bottom: none; }

.service-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--blush-dark);
    font-size: 0.75rem;
}

/* ========================================
   GALLERY PAGE (matches testimonials section)
   ======================================== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

body.page-gallery {
    background: var(--cream);
}

.gallery-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 36px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.gallery-section-title:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.gallery-grid {
    columns: 3 260px;
    column-gap: 10px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 10px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ========================================
   TESTIMONIALS PAGE
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Centre the last row when 5 cards (3+2) */
.testimonials-grid .testimonial-card:nth-child(4) {
    grid-column: 1 / 2;
}
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: 2 / 3;
}

.testimonial-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--blush-light);
    line-height: 1;
    position: absolute;
    top: 16px;
    left: 28px;
    font-style: italic;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-initial {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.author-year {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 4px;
    display: block;
}

.contact-detail a,
.contact-detail p { font-size: 0.92rem; color: var(--charcoal); }
.contact-detail a:hover { color: var(--blush-dark); }

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--blush); color: var(--white); border-color: var(--blush); }

/* Forms */
.booking-form,
.review-form {
    background: var(--cream);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group.full { grid-column: span 2; }
.form-group.full-row { margin-bottom: 20px; }

.form-group label {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-group label span.required {
    color: var(--blush-dark);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group textarea.tall {
    min-height: 180px;
}

.form-hint {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    font-size: 0.72rem;
    letter-spacing: 3px;
}

/* Review section */
.review-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.review-section .section-header { margin-bottom: 48px; }

.review-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.file-input-wrap {
    position: relative;
}

.file-input-wrap input[type="file"] {
    width: 100%;
    padding: 13px 16px;
    border: 1px dashed var(--border);
    background: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }

/* ========================================
   NOTIFICATION
   ======================================== */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 48px 16px 20px;
    border-radius: 2px;
    z-index: 9999;
    max-width: 380px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.notification-success { background: #4A7C59; color: white; }
.notification-error   { background: #9B4444; color: white; }

.notification-close {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }

    .nav-left { gap: 22px; }
    .nav-right { gap: 22px; }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px; --nav-height: 72px; }

    /* Collapse desktop nav links, centre logo */
    .nav-left, .nav-right { display: none; }
    .logo { grid-column: span 3; text-align: center; }

    .hero-content { padding: 60px 32px; }

    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-image-wrap { max-width: 360px; margin: 0 auto; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .booking-form, .review-form { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .form-group.full { grid-column: span 1; }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    /* Reset column overrides so cards stack cleanly */
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: auto;
    }
    .testimonial-card { text-align: center; }
    .gallery-grid { columns: 2 200px; }

    .footer-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .social-row { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-social { justify-content: center; }
    /* Stack eyebrow onto two lines and hide the separator dot */
    .hero-eyebrow { font-size: 0.62rem; letter-spacing: 3px; margin-right: -3px; line-height: 2; }
    .eyebrow-sep { display: none; }
    .eyebrow-line { display: block; }
    .gallery-grid { columns: 1; }
    .page-hero { height: 160px; }
    .page-hero h1 { font-size: 2rem; }
    .hero-bg { background-position: 30% 40%; }
}
