:root {
    --color-primary: #f4a261;
    --color-secondary: #e9c46a;
    --color-accent: #f2cc8f;
    --color-cream: #fefae0;
    --color-dark: #1a1a2e;
    --color-charcoal: #2d2d44;
    --color-muted: #6b6b7a;
    --color-light: #faf9f7;
    --color-white: #ffffff;
    
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Loading Animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: 9999;
    animation: loading 1.2s var(--ease-out) forwards;
}

@keyframes loading {
    0% { width: 0%; }
    40% { width: 70%; }
    100% { width: 100%; opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s var(--ease-out);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
    transition: color 0.2s ease;
}

.nav-phone:hover {
    color: var(--color-primary);
}

.nav-links {
    display: none;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--color-charcoal);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--color-dark);
}

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

.nav-cta {
    display: none;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-primary);
    transform: translateY(-1px);
}

@media (min-width: 960px) {
    .nav-links, .nav-cta {
        display: flex;
    }
    
    .nav-phone {
        font-size: 15px;
    }
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.92) 0%,
        rgba(26, 26, 46, 0.7) 30%,
        rgba(26, 26, 46, 0.4) 60%,
        rgba(26, 26, 46, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

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

.hero-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 10vw, 84px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 520px;
    margin: 0 auto 32px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s var(--ease-out);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 162, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--color-white);
}

.section-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card {
    background: var(--color-white);
    padding: 32px 28px;
    transition: background 0.3s ease;
}

.service-card:hover {
    background: var(--color-cream);
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.01em;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.6;
}

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

@media (min-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services {
        padding: 120px 0;
    }
}

/* Quote Banner */
.quote-banner {
    padding: 64px 0;
    background: var(--color-dark);
}

.banner-quote {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: var(--color-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.banner-quote::before {
    content: '"';
    color: var(--color-primary);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content .section-label,
.about-content .section-title {
    text-align: left;
}

.about-lead {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-content p {
    font-size: 16px;
    color: var(--color-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-cta {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-primary);
    margin-top: 24px;
}

@media (min-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
    }
    
    .about {
        padding: 120px 0;
    }
}

/* Gallery Section */
.gallery {
    padding: 100px 0 60px;
    background: var(--color-white);
}

.gallery-intro {
    font-size: 17px;
    color: var(--color-muted);
    margin-bottom: 48px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 40px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
}

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

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

.gallery-cta {
    text-align: center;
}

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

@media (min-width: 960px) {
    .gallery {
        padding: 120px 0 80px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--color-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 4px 4px 0;
}

.review-card-accent {
    background: var(--color-dark);
    border-left-color: var(--color-secondary);
}

.review-card-accent .review-text {
    color: rgba(255, 255, 255, 0.9);
}

.review-card-accent .review-author {
    color: rgba(255, 255, 255, 0.6);
}

.review-card-large {
    grid-column: 1;
}

.review-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-muted);
    font-style: normal;
}

.reviews-rating {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.rating-big {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.rating-text {
    font-size: 15px;
    color: var(--color-muted);
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card-large {
        grid-column: span 2;
    }
}

@media (min-width: 960px) {
    .reviews {
        padding: 120px 0;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .review-card-large {
        grid-column: span 2;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0 60px;
    background: var(--color-white);
}

.contact-intro {
    font-size: 17px;
    color: var(--color-muted);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    color: var(--color-charcoal);
    transition: color 0.2s ease;
}

.contact-item:hover {
    color: var(--color-primary);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-section h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-row dt {
    font-weight: 500;
    color: var(--color-charcoal);
}

.hours-row dd {
    color: var(--color-muted);
}

.hours-closed dt,
.hours-closed dd {
    color: var(--color-muted);
    font-style: italic;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

@media (min-width: 960px) {
    .contact {
        padding: 120px 0 80px;
    }
    
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 80px;
    }
}

/* Footer */
.footer {
    padding: 48px 0;
    background: var(--color-dark);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.footer-brand p {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-secondary);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* Mobile CTA Bar */
@media (max-width: 639px) {
    .header .nav-cta {
        display: none;
    }
}
