/* ===== Variables & Reset ===== */
:root {
    --primary: #2c2c2c;
    --accent: #c4917c;
    --accent-dark: #a0705c;
    --accent-light: #f3e8e3;
    --bg: #fffbf8;
    --bg-alt: #faf5f2;
    --text: #3d3d3d;
    --text-light: #7a7a7a;
    --white: #ffffff;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 145, 124, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}
.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
}

.btn-block {
    width: 100%;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 251, 248, 0.97);
    backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 500;
}

.logo-main em {
    font-style: italic;
    color: var(--accent-light);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.navbar.scrolled .logo-main {
    color: var(--primary);
}
.navbar.scrolled .logo-main em {
    color: var(--accent);
}
.navbar.scrolled .logo-sub {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--primary); }

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61,43,43,0.85) 0%, rgba(92,61,61,0.75) 30%, rgba(74,53,53,0.8) 70%, rgba(44,32,32,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 8px;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 28px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 1px solid rgba(196, 145, 124, 0.15);
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 350px;
    height: 350px;
    position: absolute;
    top: 50px;
    left: 50px;
    border-color: rgba(196, 145, 124, 0.08);
    animation-delay: -4s;
}

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

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

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

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
}

/* ===== About ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 55%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

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

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--accent-light) 0%, #e8d5ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.85;
}

.about-highlights {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--accent-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-dark);
}

.highlight-icon {
    font-size: 1.1rem;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

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

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-body {
    padding: 24px 20px;
}

.service-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 8px;
    line-height: 1;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.services-cta > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Gallery ===== */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: var(--radius);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== Reviews ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.review-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
}

.reviews-source {
    text-align: center;
    margin-top: 36px;
    font-size: 0.88rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars-inline {
    color: var(--accent);
    font-size: 1rem;
}

/* ===== Contact ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-block {
    margin-bottom: 28px;
}

.contact-block h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-block p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-block a {
    color: var(--accent);
    font-weight: 500;
}
.contact-block a:hover { color: var(--accent-dark); }

.hours {
    border-collapse: collapse;
    width: 100%;
}
.hours td {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 1px solid #f0ebe8;
}
.hours td:first-child {
    font-weight: 500;
    color: var(--text);
}
.hours .closed { color: var(--accent); }

.contact-map {
    min-height: 480px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== Footer ===== */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,0.65);
    padding: 72px 0 28px;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}
.footer-logo em { color: var(--accent); }

.footer-brand p {
    font-size: 0.88rem;
    margin-bottom: 4px;
}
.footer-tagline {
    margin-top: 12px;
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
}

.footer-nav h4, .footer-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.85rem; }
.footer-nav a:hover { color: var(--accent); }

.footer-info p {
    font-size: 0.85rem;
    margin-bottom: 6px;
}
.footer-info a:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.78rem;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
    .gallery-masonry { columns: 1; }
}
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 36px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--text); font-size: 0.95rem; }
    .nav-toggle { display: flex; z-index: 1001; }

    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 350px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .hero-decoration { display: none; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .gi-2 { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 72px 0; }
    .about-images { height: 300px; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; }
    .about-highlights { flex-direction: column; }
}
