/* ============================================
   RAXY HAIR SALON — STYLESHEET
   Classic & Elegant | Forest Green + Off-White
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --color-forest: #1a3c2a;
    --color-forest-light: #2d5a3f;
    --color-forest-dark: #0f2419;
    --color-forest-muted: #3d6b4f;
    --color-cream: #f7f4ef;
    --color-cream-light: #faf8f5;
    --color-cream-dark: #ece6dc;
    --color-warm-gray: #8a8278;
    --color-warm-gray-light: #b5aea6;
    --color-text-dark: #1a1a18;
    --color-text-muted: #4a4844;
    --color-gold: #c9a96e;
    --color-gold-light: #d4b87a;
    --color-white: #ffffff;
    --color-overlay: rgba(15, 36, 25, 0.72);
    --color-overlay-light: rgba(15, 36, 25, 0.55);

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Raleway', 'Helvetica Neue', sans-serif;

    --fs-xs: clamp(0.7rem, 0.8vw, 0.8rem);
    --fs-sm: clamp(0.8rem, 0.9vw, 0.9rem);
    --fs-base: clamp(0.95rem, 1vw, 1.05rem);
    --fs-md: clamp(1.1rem, 1.2vw, 1.25rem);
    --fs-lg: clamp(1.4rem, 1.8vw, 1.75rem);
    --fs-xl: clamp(1.8rem, 2.5vw, 2.5rem);
    --fs-2xl: clamp(2.2rem, 3.5vw, 3.5rem);
    --fs-3xl: clamp(2.8rem, 5vw, 5rem);

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-forest);
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section-eyebrow.light {
    color: var(--color-gold-light);
}

.section-title {
    font-size: var(--fs-2xl);
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-forest);
    color: var(--color-white);
    border: 1.5px solid var(--color-forest);
}

.btn-primary:hover {
    background: var(--color-forest-light);
    border-color: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 60, 42, 0.25);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(247, 244, 239, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 rgba(26, 60, 42, 0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--color-white);
    transition: color var(--transition-base);
}

.navbar.scrolled .nav-logo {
    color: var(--color-forest);
}

.logo-icon {
    font-size: var(--fs-sm);
    color: var(--color-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-white);
}

.navbar.scrolled .nav-link {
    color: var(--color-text-muted);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-forest);
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-cta:hover {
    background: var(--color-white);
    color: var(--color-forest) !important;
    border-color: var(--color-white);
}

.navbar.scrolled .nav-cta {
    border-color: var(--color-forest);
    color: var(--color-forest) !important;
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-forest);
    color: var(--color-white) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    transition: all var(--transition-base);
}

.navbar.scrolled .hamburger {
    background: var(--color-forest);
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-forest-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: var(--space-lg);
    right: clamp(1.25rem, 4vw, 3rem);
    color: var(--color-white);
    padding: var(--space-xs);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    color: var(--color-cream);
    transition: color var(--transition-fast);
}

.mobile-link:hover {
    color: var(--color-gold);
}

.mobile-cta {
    margin-top: var(--space-md);
    font-family: var(--font-sans);
    font-size: var(--fs-sm) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold) !important;
    border: 1px solid var(--color-gold);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-sm);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 36, 25, 0.82) 0%,
        rgba(26, 60, 42, 0.68) 50%,
        rgba(15, 36, 25, 0.78) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: var(--fs-3xl);
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255, 255, 255, 0.5);
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Services ---------- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 60, 42, 0.1);
    border-color: rgba(201, 169, 110, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream);
    color: var(--color-forest);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-forest);
    color: var(--color-white);
}

.service-title {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 500;
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.service-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ---------- About ---------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-cream-light);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-images {
    position: relative;
    padding-bottom: var(--space-lg);
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 60, 42, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 60, 42, 0.2);
    border: 4px solid var(--color-cream-light);
}

.about-img-secondary img {
    width: 220px;
    height: 280px;
    object-fit: cover;
}

.about-decoration {
    position: absolute;
    top: -30px;
    right: 40px;
    color: var(--color-gold);
    opacity: 0.3;
}

.about-content {
    padding: var(--space-lg) 0;
}

.about-text {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.about-signature {
    margin: var(--space-lg) 0;
    padding-left: var(--space-md);
    border-left: 2px solid var(--color-gold);
}

.signature-text {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-style: italic;
    color: var(--color-forest);
}

.about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 500;
    color: var(--color-forest);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--color-cream-dark);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
}
.gallery-item:nth-child(1) img { height: 400px; }

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
}
.gallery-item:nth-child(2) img { height: 300px; }

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1 / 2;
}
.gallery-item:nth-child(3) img { height: 400px; }

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}
.gallery-item:nth-child(4) img { height: 300px; }

.gallery-item:nth-child(5) {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
}
.gallery-item:nth-child(5) img { height: 350px; }

/* ---------- Testimonials ---------- */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--color-forest);
}

.testimonials .section-title {
    color: var(--color-white);
}

.testimonials .section-eyebrow {
    color: var(--color-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote {
    margin-bottom: var(--space-md);
    color: var(--color-forest);
}

.testimonial-quote svg {
    color: var(--color-gold);
}

.testimonial-text {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 36, 25, 0.85) 0%,
        rgba(26, 60, 42, 0.75) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--fs-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-info {
    padding-top: var(--space-sm);
}

.contact-desc {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-cream-dark);
    color: var(--color-forest);
}

.contact-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
    margin-bottom: 2px;
}

.contact-value {
    font-size: var(--fs-base);
    color: var(--color-text-dark);
    line-height: 1.6;
}

.contact-link {
    color: var(--color-forest);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-forest-light);
    text-decoration: underline;
}

.contact-hours {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-gold);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    color: var(--color-forest);
    margin-bottom: var(--space-sm);
}

.hours-value {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 8px 40px rgba(26, 60, 42, 0.08);
}

.form-title {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    color: var(--color-forest);
    margin-bottom: var(--space-xs);
}

.form-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--color-text-dark);
    background: var(--color-cream);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-warm-gray-light);
}

.form-input:focus {
    border-color: var(--color-forest);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.08);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8278' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    color: var(--color-forest);
}

.form-success svg {
    margin-bottom: var(--space-sm);
    color: var(--color-forest);
}

.form-success p {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-forest-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.footer-tagline {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-nav-title,
.footer-contact-title {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.footer-links,
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a,
.footer-contact-list a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--color-white);
}

.footer-contact-list li:last-child {
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--fs-sm);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: var(--space-xl);
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto;
    }

    .gallery-item:nth-child(1) { grid-column: 1 / 3; }
    .gallery-item:nth-child(2) { grid-column: 3 / 5; }
    .gallery-item:nth-child(3) { grid-column: 5 / 7; }
    .gallery-item:nth-child(4) { grid-column: 1 / 4; }
    .gallery-item:nth-child(5) { grid-column: 4 / 7; }

    .gallery-item:nth-child(1) img { height: 300px; }
    .gallery-item:nth-child(2) img { height: 250px; }
    .gallery-item:nth-child(3) img { height: 300px; }
    .gallery-item:nth-child(4) img { height: 250px; }
    .gallery-item:nth-child(5) img { height: 300px; }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: var(--fs-xl);
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -20px;
    }

    .about-img-secondary img {
        width: 180px;
        height: 230px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: auto;
    }

    .gallery-item img {
        height: 250px !important;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 48px;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }
}
