/* ==========================================
   JASS THE SALON - STYLE.CSS
   Premium Unisex Salon Website
   Color Palette:
   - Primary: Deep Navy Blue (#0B1E2D)
   - Accent: Golden Yellow (#F4C400)
   - Background: White (#FFFFFF) / Light Grey (#F6F7F8)
   ========================================== */

/* CSS Variables */
:root {
    --color-primary: #0B1E2D;
    --color-accent: #F4C400;
    --color-accent-hover: #d9af00;
    --color-white: #FFFFFF;
    --color-light-grey: #F6F7F8;
    --color-text: #0B1E2D;
    --color-text-light: #5a6a7a;
    --color-error: #dc3545;
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20bd5a;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(11, 30, 45, 0.08);
    --shadow-md: 0 4px 12px rgba(11, 30, 45, 0.1);
    --shadow-lg: 0 8px 30px rgba(11, 30, 45, 0.12);
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    
    --header-height: 72px;
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
}

/* ==========================================
   RESET & BASE
   ========================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

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

a {
    color: inherit;
    text-decoration: none;
    -webkit-touch-callout: none;
}

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

input, select, textarea {
    font-family: inherit;
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

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

h1 { font-size: clamp(1.875rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(11, 30, 45, 0.08);
    position: relative;
    z-index: 1000;
    padding-top: var(--safe-area-inset-top);
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0.875rem 1rem;
    min-height: var(--header-height);
    gap: 0.5rem;
    overflow: hidden;
    box-sizing: border-box;
}

/* Logo Area - Left */
.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 0;
    min-height: 70px;
    padding: 0.5rem 0;
    transition: transform var(--transition-fast);
}

.logo-area:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.salon-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 1;
    gap: 0.25rem;
}

.salon-name {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.08em;
    white-space: nowrap;
    line-height: 1.1;
}

.salon-location {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-light);
    white-space: nowrap;
}

/* Mobile responsiveness for logo */
@media (max-width: 640px) {
    .logo-area {
        gap: 0.5rem;
        min-height: 60px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .salon-name {
        font-size: 1rem;
    }
    
    .salon-location {
        display: none;
    }
}

/* Social Icons - Center */
.social-icons {
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: 150px;
    gap: 0.25rem;
    flex-shrink: 0;
}

/* Mobile Instagram Button - Navbar */
.mobile-instagram-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    border-radius: 50%;
    transition: color var(--transition-fast), transform var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    text-decoration: none;
}

.mobile-instagram-btn:hover,
.mobile-instagram-btn:focus {
    color: var(--color-accent);
}

.mobile-instagram-btn i {
    font-size: 1.25rem;
}

/* Show mobile Instagram on mobile devices only */
@media (max-width: 639px) {
    .mobile-instagram-btn {
        display: flex !important;
    }
}

/* Hide mobile Instagram on tablet and up */
@media (min-width: 640px) {
    .mobile-instagram-btn {
        display: none !important;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    border-radius: 50%;
    transition: color var(--transition-fast), transform var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.social-link:hover,
.social-link:focus {
    color: var(--color-accent);
}

.social-link:active {
    transform: scale(0.95);
}

.social-link--whatsapp:hover,
.social-link--whatsapp:focus {
    color: var(--color-whatsapp);
}

.social-link i {
    font-size: 1.25rem;
}

.icon-svg {
    width: 22px;
    height: 22px;
}

/* Navigation Links - Right (Desktop) */
.nav-links {
    display: none;
    align-items: center;
    gap: 0.125rem;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0.875rem;
    right: 0.875rem;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* ==========================================
   HAMBURGER MENU BUTTON
   ========================================== */

.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1002;
    flex-shrink: 0;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
}

.hamburger-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.hamburger-line {
    position: absolute;
    width: 24px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
    will-change: transform, opacity;
}

.hamburger-line:nth-child(1) {
    top: 4px;
}

.hamburger-line:nth-child(2) {
    top: 11px;
}

.hamburger-line:nth-child(3) {
    top: 18px;
}

/* Hamburger Active State - X animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-bottom: calc(1rem + var(--safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    
    /* Hidden state */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), 
                transform var(--transition-base),
                visibility 0s linear var(--transition-base);
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition-base), 
                transform var(--transition-base),
                visibility 0s linear 0s;
}

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

.mobile-link {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    border-bottom: 1px solid rgba(11, 30, 45, 0.06);
    transition: color var(--transition-fast), background-color var(--transition-fast);
    min-height: 48px;
    display: flex;
    align-items: center;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--color-accent);
    background-color: rgba(244, 196, 0, 0.05);
}

.mobile-link.active {
    color: var(--color-accent);
    font-weight: 600;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(11, 30, 45, 0.08);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(11, 30, 45, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility 0s linear var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition-base), visibility 0s linear 0s;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Slight scale for subtle Ken Burns effect */
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Lighter overlay to show more of the background */
    background: linear-gradient(
        135deg,
        rgba(11, 30, 45, 0.7) 0%,
        rgba(11, 30, 45, 0.5) 40%,
        rgba(11, 30, 45, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

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

/* Tagline above the main title */
.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-title {
    font-family: 'Playfair Display', var(--font-heading), Georgia, serif;
    font-weight: 400;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    /* Text shadow for better readability over background */
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3),
                 0 4px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-title .text-accent {
    color: var(--color-accent);
    display: block;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    /* Subtle text shadow for readability */
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-cta-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.3s forwards;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: transform var(--transition-fast), 
                box-shadow var(--transition-fast), 
                background-color var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    border: none;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-accent-hover);
    box-shadow: 0 4px 12px rgba(244, 196, 0, 0.3);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-light-grey);
}

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

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ==========================================
   BOOKING CARD & FORM
   ========================================== */

.booking-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.booking-title {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid var(--color-accent);
    font-size: 1.5rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(11, 30, 45, 0.2);
    border-radius: 4px;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 48px;
    appearance: none;
    -webkit-appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.1);
}

.form-input.error {
    border-color: var(--color-error);
}

.form-input.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230B1E2D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-hint {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.form-error {
    display: none;
    padding: 0.875rem 1rem;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    color: var(--color-error);
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-error.visible {
    display: block;
    animation: shake 0.4s ease;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-disclaimer a:hover,
.form-disclaimer a:focus {
    color: var(--color-accent);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 2.5rem 1rem 1.5rem;
    padding-bottom: calc(1.5rem + var(--safe-area-inset-bottom));
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.footer-logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
    padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--color-accent);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    min-height: 44px;
}

.footer-cta:hover,
.footer-cta:focus {
    background-color: var(--color-whatsapp-hover);
}

.footer-cta:active {
    transform: scale(0.98);
}

.footer-cta-secondary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus {
    background-color: var(--color-accent-hover);
}

.footer-bottom {
    max-width: 1400px;
    margin: 1.5rem auto 0;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-8px); }
    40% { transform: translateX(8px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==========================================
   PAGE CONTENT (for other pages)
   ========================================== */

.page-header {
    background-color: var(--color-primary);
    padding: 3rem 1rem 2.5rem;
    padding-top: calc(3rem + var(--safe-area-inset-top));
    text-align: center;
}

.page-title {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.page-header .page-title,
.page-header .page-subtitle,
.page-hero h1,
.page-hero p {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.page-header .page-title,
.page-hero h1 {
    animation-name: pageSlideFromLeft;
}

.page-header .page-subtitle,
.page-hero p {
    animation-name: pageSlideFromRight;
    animation-delay: 0.14s;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 1rem;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.875rem;
    font-size: 1.375rem;
}

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

.page-content p {
    margin-bottom: 1rem;
    color: var(--color-text);
    line-height: 1.75;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* Section styles */
.section {
    padding: 3rem 1rem;
}

.section-alt {
    background-color: var(--color-light-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.875rem auto 0;
}

.reveal-on-scroll {
    opacity: 0;
    will-change: transform, opacity;
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.reveal-left {
    transform: translate3d(-42px, 16px, 0) rotate(-1.2deg);
}

.reveal-on-scroll.reveal-right {
    transform: translate3d(42px, 16px, 0) rotate(1.2deg);
}

.reveal-on-scroll.reveal-up {
    transform: translate3d(0, 36px, 0);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0);
}

.service-card.reveal-on-scroll.is-visible,
.staff-card.reveal-on-scroll.is-visible,
.award-card.reveal-on-scroll.is-visible,
.contact-card.reveal-on-scroll.is-visible,
.about-section.reveal-on-scroll.is-visible,
.about-cta.reveal-on-scroll.is-visible,
.page-content > *:is(.reveal-on-scroll).is-visible,
.salon-images img.reveal-on-scroll.is-visible {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

@keyframes pageSlideFromLeft {
    from {
        opacity: 0;
        transform: translate3d(-48px, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pageSlideFromRight {
    from {
        opacity: 0;
        transform: translate3d(48px, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

/* ==========================================
   RESPONSIVE - SMALL MOBILE (320px+)
   ========================================== */

/* Ensure header and navbar are always visible on mobile */
@media (max-width: 1023px) {
    .header {
        display: block !important;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .navbar {
        display: flex !important;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px !important;
        height: 44px !important;
    }
    
    .hamburger-box {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hamburger-line {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: var(--color-primary) !important;
    }
}

@media (min-width: 375px) {
    .navbar {
        padding: 0.875rem 1.25rem;
    }
    
    .salon-name {
        font-size: 1.25rem;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .hero-content {
        padding: 2.5rem 1.25rem;
    }
    
    .hero-tagline {
        font-size: 0.8125rem;
    }
    
    .booking-card {
        padding: 1.75rem;
    }
}

/* ==========================================
   RESPONSIVE - TABLET (640px+)
   ========================================== */

@media (min-width: 640px) {
    .social-icons {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .booking-card {
        padding: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.9375rem;
        letter-spacing: 0.3em;
    }
    
    .hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.9;
    }
    
    .booking-title {
        font-size: 1.75rem;
    }
    
    .logo-img {
        width: 130px;
        height: 130px;
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP (1024px+)
   ========================================== */

@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .navbar {
        padding: 1rem 2rem;
    }

    .logo-img {
        width: 140px;
        height: 140px;
    }
    
    .salon-name {
        font-size: 1.5rem;
    }
    
    .nav-links {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr 420px;
        align-items: center;
        gap: 3rem;
        padding: 4rem 3rem;
        min-height: calc(100vh - var(--header-height));
        min-height: calc(100dvh - var(--header-height));
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-tagline {
        font-size: 0.9375rem;
    }
    
    .hero-subtitle {
        margin-left: 0;
        margin-right: 0;
        max-width: 480px;
    }
    
    .hero-cta-mobile {
        justify-content: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }
    
    .footer-contact {
        justify-content: flex-end;
    }
    
    .section {
        padding: 4rem 2rem;
    }
}

/* ==========================================
   RESPONSIVE - LARGE DESKTOP (1280px+)
   ========================================== */

@media (min-width: 1280px) {
    .hero-content {
        grid-template-columns: 1fr 480px;
        gap: 4rem;
    }
    
    .booking-card {
        padding: 2.5rem;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================
   SERVICES GRID
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid rgba(11, 30, 45, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light-grey);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.375rem;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   STAFF GRID
   ========================================== */

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

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

.staff-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-light-grey);
}

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

.staff-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.staff-role {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.staff-bio {
    color: var(--color-text-light);
    font-size: 0.875rem;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .staff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .staff-image {
        width: 180px;
        height: 180px;
    }
}

/* ==========================================
   GALLERY GRID
   ========================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-light-grey);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* ==========================================
   AWARDS GRID
   ========================================== */

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

.award-card {
    background-color: var(--color-white);
    border: 1px solid rgba(11, 30, 45, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.award-image {
    height: 180px;
    background-color: var(--color-light-grey);
}

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

.award-content {
    padding: 1.25rem;
    text-align: center;
}

.award-year {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.award-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
}

.award-content p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.recognition-content {
    padding: 1.5rem;
    text-align: left;
}

.recognition-quote {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.recognition-source {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 600;
}

.recognition-note a {
    color: var(--color-primary);
    text-decoration: underline;
}

@media (min-width: 640px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .award-image {
        height: 200px;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.contact-info h2,
.contact-hours h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
    font-size: 1.375rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(11, 30, 45, 0.08);
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-item a:hover,
.contact-item a:focus {
    color: var(--color-accent);
}

.contact-note {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.hours-list {
    background-color: var(--color-light-grey);
    border-radius: 8px;
    padding: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(11, 30, 45, 0.08);
    font-size: 0.9375rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================
   BOOKING PAGE UI ALIGNMENT (SITEWIDE OVERRIDES)
   ========================================== */

:root {
    --color-primary: #121927;
    --color-accent: #d7b36a;
    --color-accent-hover: #c79d4d;
    --color-white: #fffdf8;
    --color-light-grey: #eef2f8;
    --color-text: #1a2230;
    --color-text-light: #5f6a7b;
    --shadow-sm: 0 8px 20px rgba(16, 20, 28, 0.06);
    --shadow-md: 0 16px 38px rgba(16, 20, 28, 0.09);
    --shadow-lg: 0 24px 60px rgba(16, 20, 28, 0.12);
    --header-height: 78px;
}

body {
    background:
        radial-gradient(circle at 12% 10%, rgba(215, 179, 106, 0.14), transparent 42%),
        radial-gradient(circle at 88% 16%, rgba(31, 122, 95, 0.12), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #f4f7fc 38%, #eef3fa 100%);
}

h1, h2, h3, h4, h5, h6 {
    color: #182133;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: linear-gradient(180deg, rgba(39, 53, 78, 0.95), rgba(34, 47, 70, 0.95));
    border-bottom: 1px solid rgba(215, 179, 106, 0.2);
    box-shadow: 0 14px 28px rgba(9, 12, 18, 0.16);
    overflow: visible;
}

.navbar {
    width: min(1200px, calc(100% - 1rem));
    margin: 0.55rem auto;
    padding: 0.6rem 0.85rem;
    min-height: var(--header-height);
    gap: 0.75rem;
    border-radius: 999px;
    background: linear-gradient(120deg, rgba(63, 84, 123, 0.96), rgba(46, 62, 92, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 38px rgba(13, 17, 25, 0.25);
    overflow: visible;
}

.logo-area {
    min-height: auto;
    padding: 0;
    gap: 0.65rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.salon-info {
    gap: 0.1rem;
}

.salon-name {
    color: #fff5e0;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-shadow: 0 6px 16px rgba(10, 10, 12, 0.22);
}

.salon-location {
    color: #f3d59d;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}

.social-icons {
    gap: 0.4rem;
    min-width: auto;
    padding: 0.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-link,
.mobile-instagram-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
    color: #fff8ea;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.social-link:hover,
.social-link:focus,
.mobile-instagram-btn:hover,
.mobile-instagram-btn:focus {
    color: #fff6e2;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 18px rgba(13, 17, 25, 0.18);
}

.social-link--whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: #ffffff;
}

.nav-links {
    gap: 0.35rem;
    padding: 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-link {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fbf3df;
    transition: background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: #ffeec6;
    background: rgba(215, 179, 106, 0.22);
    box-shadow: inset 0 0 0 1px rgba(215, 179, 106, 0.35);
}

.hamburger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    background: #3d5278;
    border: 1px solid rgba(215, 179, 106, 0.55);
    box-shadow: 0 10px 20px rgba(13, 17, 25, 0.24);
    margin-left: 0;
}

.hamburger-box {
    width: 22px;
    height: 18px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: #f9e6bc !important;
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 8px;
}

.hamburger-line:nth-child(3) {
    top: 16px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    top: 0;
    right: 0;
    left: auto;
    width: min(92vw, 360px);
    background: rgba(63, 84, 123, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: -18px 0 42px rgba(13, 17, 25, 0.32);
    padding: 1.25rem 1rem calc(1rem + var(--safe-area-inset-bottom));
    transform: translateX(104%);
    transition: transform var(--transition-base), visibility 0s linear var(--transition-base);
    opacity: 1;
    pointer-events: none;
    gap: 1rem;
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: transform var(--transition-base), visibility 0s linear 0s;
}

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

.mobile-link {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff6e1;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mobile-link:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-link:hover,
.mobile-link:active,
.mobile-link.active {
    color: #fff0cb;
    background: rgba(215, 179, 106, 0.2);
    border-color: rgba(215, 179, 106, 0.35);
}

.mobile-social {
    justify-content: flex-start;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.mobile-overlay {
    background-color: transparent;
    z-index: 1400;
}

.page-header {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(215, 179, 106, 0.16), transparent 38%),
        radial-gradient(circle at 86% 22%, rgba(31, 122, 95, 0.14), transparent 40%),
        linear-gradient(140deg, #182234 0%, #1f2b41 55%, #22314a 100%);
    border-bottom: 1px solid rgba(215, 179, 106, 0.14);
    padding: 3.5rem 1rem 2.6rem;
    padding-top: calc(3.5rem + var(--safe-area-inset-top));
}

.page-title {
    color: #fff4dc;
    letter-spacing: 0.04em;
}

.page-subtitle {
    color: rgba(255, 249, 236, 0.78);
}

.section {
    background: transparent;
    padding: 3rem 1rem;
}

.section-alt {
    background: rgba(255, 255, 255, 0.55);
}

.page-content {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 33, 51, 0.06);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 1.4rem;
}

.booking-card,
.service-card,
.award-card,
.hours-list {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 33, 51, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(6px);
}

.service-card,
.award-card {
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.service-card:hover,
.award-card:hover {
    border-color: rgba(215, 179, 106, 0.3);
    box-shadow: 0 20px 36px rgba(16, 20, 28, 0.12);
}

.service-icon {
    background: linear-gradient(135deg, rgba(215, 179, 106, 0.18), rgba(215, 179, 106, 0.08));
    color: #8b6729;
    border: 1px solid rgba(215, 179, 106, 0.22);
}

.staff-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 33, 51, 0.06);
    border-radius: 18px;
    padding: 1.25rem 1rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.staff-image {
    border: 3px solid rgba(215, 179, 106, 0.22);
    box-shadow: 0 14px 28px rgba(16, 20, 28, 0.1);
}

.gallery-item {
    border-radius: 16px;
    border: 1px solid rgba(24, 33, 51, 0.08);
    box-shadow: var(--shadow-sm);
    background: rgba(255, 255, 255, 0.85);
}

.contact-info,
.contact-hours {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 33, 51, 0.06);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    border-bottom: 1px solid rgba(24, 33, 51, 0.07);
}

.contact-icon {
    border-radius: 12px;
    background: linear-gradient(135deg, #2b3a56, #1b2435);
    box-shadow: 0 10px 18px rgba(16, 20, 28, 0.14);
}

.btn {
    border-radius: 999px;
    padding: 0.8rem 1.35rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #2aa57b, #1f7a5f);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(31, 122, 95, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #33b487, #218566);
    box-shadow: 0 14px 26px rgba(31, 122, 95, 0.28);
}

.btn-secondary {
    background: rgba(215, 179, 106, 0.16);
    color: #79591f;
    border-color: rgba(215, 179, 106, 0.32);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(215, 179, 106, 0.24);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
}

.footer {
    background:
        radial-gradient(circle at 14% 18%, rgba(215, 179, 106, 0.12), transparent 38%),
        linear-gradient(145deg, #151d2b 0%, #101722 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3rem;
}

.footer-logo {
    color: #fff4dc;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #f2d9a8;
}

.footer-cta {
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(13, 17, 25, 0.22);
}

.footer-cta-secondary {
    background: rgba(215, 179, 106, 0.18);
    color: #f6dfb1;
    border: 1px solid rgba(215, 179, 106, 0.35);
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus {
    background: rgba(215, 179, 106, 0.26);
    color: #fff0cf;
}

@media (max-width: 640px) {
    .navbar {
        width: calc(100% - 0.75rem);
        margin: 0.35rem auto;
        padding: 0.5rem 0.6rem;
        gap: 0.5rem;
    }

    .logo-img {
        width: 44px;
        height: 44px;
    }

    .salon-name {
        font-size: 0.96rem;
        letter-spacing: 0.08em;
    }

    .mobile-instagram-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .page-header {
        padding-top: calc(2.8rem + var(--safe-area-inset-top));
        padding-bottom: 2.1rem;
    }

    .page-content,
    .contact-info,
    .contact-hours {
        border-radius: 14px;
        padding: 1rem;
    }
}

@media (min-width: 1024px) {
    .navbar {
        width: min(1220px, calc(100% - 2rem));
        padding: 0.6rem 1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .salon-name {
        font-size: 1.08rem;
    }

    .section {
        padding: 3.8rem 2rem;
    }
}

/* ==========================================
   SITEWIDE LOGO OVERRIDES
   ========================================== */

.logo-img {
    width: 56px;
    height: 56px;
    padding: 4px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    flex-shrink: 0;
}

.footer-logo-img {
    width: 62px;
    height: 62px;
    padding: 4px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    display: block;
}

@media (max-width: 640px) {
    .logo-img {
        width: 52px;
        height: 52px;
    }

    .footer-location {
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-cta {
        width: 100%;
        max-width: 20rem;
    }
}

/* ==========================================
   CANONICAL SITE SHELL
   Keep navbar/footer wrappers in sync with index.html
   ========================================== */

:root {
    --font-heading: 'Cinzel', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.salon-name,
.nav-brand-name,
.page-title {
    font-family: var(--font-heading);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: #26344a;
    border-bottom: 1px solid rgba(215, 179, 106, 0.2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.navbar {
    position: relative;
    width: min(1200px, calc(100% - 2rem));
    margin: 0.75rem auto;
    min-height: 78px;
    padding: 0.6rem 1rem;
    gap: 1rem;
    background: linear-gradient(120deg, rgba(58, 79, 118, 0.95), rgba(44, 60, 90, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
    overflow: visible;
}

.navbar.is-scrolled {
    background: linear-gradient(120deg, rgba(63, 86, 129, 0.98), rgba(46, 63, 96, 0.98));
    border-color: rgba(215, 179, 106, 0.42);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex-shrink: 0;
}

.nav-logo {
    width: 50px;
    height: 50px;
    padding: 4px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.nav-brand-name {
    display: block;
    color: #f7f2e8;
    font-size: 1.02rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.nav-brand-sub {
    display: block;
    color: #f0d7a2;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.nav-link {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f7f2e8;
    border: 1px solid transparent;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(215, 179, 106, 0.3);
    border-color: rgba(215, 179, 106, 0.55);
    color: #f7e4ba;
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}

.nav-icon:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.nav-actions .nav-icon,
.mobile-social .nav-icon {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2aa57b, #1f7a5f);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 24px rgba(31, 122, 95, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hamburger {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #3c4f72;
    border: 1px solid rgba(215, 179, 106, 0.6);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    margin-left: auto;
}

.hamburger-box {
    width: 22px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    position: absolute;
    width: 22px;
    height: 2px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #f7e4ba;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 8px; }
.hamburger-line:nth-child(3) { top: 16px; }

.hamburger.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(92vw, 360px);
    background: #3b5072;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.35s ease;
    z-index: 2000;
    pointer-events: none;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.active {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.mobile-surface {
    background: #465f86;
    padding: 1.5rem 1.25rem 2rem;
    height: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-brand-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #fff6e2;
    font-weight: 700;
}

.mobile-brand-loc {
    font-size: 0.65rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #f5d9a7;
}

.mobile-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f8e5bd;
}

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

.mobile-link {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: #546b92;
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #f9f4ea;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    min-height: auto;
}

.mobile-link:hover,
.mobile-link:active,
.mobile-link.active {
    color: #fff0cf;
    background: #5e79a4;
    border-color: rgba(215, 179, 106, 0.9);
}

.mobile-close {
    border: 1px solid rgba(215, 179, 106, 0.5);
    background: rgba(215, 179, 106, 0.2);
    color: #f7e4ba;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-actions {
    display: grid;
    gap: 0.75rem;
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #2aa57b, #1f7a5f);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(31, 122, 95, 0.35);
}

.mobile-cta-alt {
    background: rgba(215, 179, 106, 0.2);
    border: 1px solid rgba(215, 179, 106, 0.5);
    color: #f7e4ba;
    box-shadow: none;
}

.mobile-social {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
    border-top: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    z-index: 1400;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s;
}

.page-header {
    background: linear-gradient(180deg, #26344a 0%, #30425d 100%);
    text-align: center;
    padding-top: calc(4rem + var(--safe-area-inset-top));
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid rgba(215, 179, 106, 0.18);
}

.page-title {
    color: #f7f2e8;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.page-subtitle {
    color: #d8c8ab;
    max-width: 42rem;
    margin: 0 auto;
    font-size: 1rem;
}

.footer {
    background:
        radial-gradient(circle at 14% 18%, rgba(215, 179, 106, 0.12), transparent 38%),
        linear-gradient(145deg, #151d2b 0%, #101722 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3rem;
}

.footer-content {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
    align-items: start;
    text-align: left;
}

.footer-brand {
    display: grid;
    gap: 0.9rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-tagline {
    text-align: left;
    margin-top: 0;
}

.footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact {
    flex-direction: column;
    align-items: flex-start;
}

.footer-location {
    margin-top: 0;
}

.footer-cta {
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(13, 17, 25, 0.22);
}

.footer-cta-secondary {
    background: rgba(215, 179, 106, 0.18);
    color: #f6dfb1;
    border: 1px solid rgba(215, 179, 106, 0.35);
}

.footer-cta-secondary:hover,
.footer-cta-secondary:focus {
    background: rgba(215, 179, 106, 0.26);
    color: #fff0cf;
}

@media (min-width: 980px) {
    .nav-links,
    .nav-actions {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu,
    .mobile-overlay {
        display: none !important;
    }
}

@media (max-width: 979px) {
    .nav-actions {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-tagline,
    .footer-location {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .navbar {
        width: calc(100% - 0.75rem);
        margin: 0.35rem auto;
        padding: 0.5rem 0.6rem;
        gap: 0.55rem;
    }

    .nav-brand-name {
        font-size: 0.96rem;
        letter-spacing: 1.6px;
    }

    .nav-brand-sub {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .mobile-menu {
        width: min(100vw, 340px);
    }

    .page-header {
        padding-top: calc(3.6rem + var(--safe-area-inset-top));
        padding-bottom: 2.75rem;
    }
}
