/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #2b2620;
    background: #faf6f0;
    line-height: 1.65;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    line-height: 1.2;
}

a { text-decoration: none; }


/* ===== IMAGE ZOOM ON HOVER ===== */
.img-wrap {
    overflow: hidden;
    border-radius: 12px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-wrap:hover img {
    transform: scale(1.08);
}


/* ===== NAV ===== */
.site-header {
    position: sticky;
    top: 0;
    background: #faf6f0;
    border-bottom: 1px solid #ece4d8;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2b2620;
}

.logo span { color: #c1622f; }

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #2b2620;
    transition: all 0.3s ease;
}

.nav-links {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #faf6f0;
    border-bottom: 1px solid #ece4d8;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
}

.nav-links.open { display: flex; }

.nav-links a {
    color: #2b2620;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover { color: #c1622f; }

@media (min-width: 768px) {
    .nav-toggle { display: none; }
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        border: none;
        padding: 0;
        gap: 36px;
    }
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c1622f;
    color: #fff;
}

.btn-primary:hover {
    background: #a64f23;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 98, 47, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2b2620;
    border-color: #2b2620;
}

.btn-secondary:hover {
    background: #2b2620;
    color: #fff;
    transform: translateY(-2px);
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* ===== HERO ===== */
.hero {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
    gap: 32px;
    align-items: center;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-text {
    text-align: center;
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c1622f;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.lead {
    color: #6b6258;
    max-width: 480px;
    margin: 0 auto 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero .cta-group {
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        text-align: left;
        padding: 64px 32px;
    }
    .hero-image { flex: 1; order: 2; }
    .hero-image img { height: 420px; }
    .hero-text { flex: 1; order: 1; text-align: left; }
    .lead { margin: 0 0 28px; }
    .hero .cta-group { justify-content: flex-start; }
    .hero h1 { font-size: 52px; }
}


/* ===== SECTION LAYOUT ===== */
section:not(.hero) {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
}

.alt-bg {
    max-width: none;
    background: #f1e9dd;
}

.alt-bg > * {
    max-width: 1200px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 44px;
}

.section-intro h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.section-sub {
    color: #6b6258;
    font-size: 15px;
}

@media (min-width: 768px) {
    .section-intro h2 { font-size: 38px; }
}


/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

@media (min-width: 600px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
    .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece4d8;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(43, 38, 32, 0.08);
}

.service-card .img-wrap {
    border-radius: 0;
    height: 190px;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.card-body p {
    color: #6b6258;
    font-size: 14px;
    margin-bottom: 14px;
}

.price {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: #c1622f;
}


/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 700px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
    aspect-ratio: 3/4;
}


/* ===== LOCATION ===== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

@media (min-width: 768px) {
    .location-grid { grid-template-columns: repeat(3, 1fr); }
}

.location-block h3 {
    font-size: 18px;
    color: #c1622f;
    margin-bottom: 16px;
}

.location-block p {
    color: #6b6258;
    margin-bottom: 18px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #ece4d8;
    font-size: 14px;
    color: #6b6258;
}


/* ===== FOOTER ===== */
footer {
    background: #2b2620;
    color: #b0a89c;
    text-align: center;
    padding: 48px 24px;
}

footer .social {
    margin: 20px 0 10px;
    font-size: 14px;
}

footer .copyright {
    font-size: 13px;
}