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

:root {
    --color-primary: #c4839a;
    --color-primary-dark: #a06579;
    --color-secondary: #f5ebe8;
    --color-accent: #8b5e3c;
    --color-text: #2c2520;
    --color-text-light: #6b6058;
    --color-bg: #fdfbf9;
    --color-white: #ffffff;
    --color-border: #e8ddd6;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 37, 32, 0.06);
    --shadow-md: 0 8px 24px rgba(44, 37, 32, 0.1);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

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

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}
.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-text);
    border-color: var(--color-white);
}
.btn-light:hover {
    background: transparent;
    color: var(--color-white);
}

/* === Header === */
.site-header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--color-text);
    color: var(--color-white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.header-top-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.header-info { opacity: 0.9; }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
}
.logo-text em {
    color: var(--color-primary);
    font-style: italic;
}
.logo-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 0.3rem;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
.main-nav a {
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--color-primary); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-text);
}

/* === Hero === */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 37, 32, 0.55), rgba(44, 37, 32, 0.3));
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 4rem 0;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.hero h1 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.hero h1 em {
    color: #f8d3dd;
    font-style: italic;
}
.hero-text {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Sections === */
.section {
    padding: 5rem 0;
}
.section-tight { padding: 3.5rem 0; }
.section-bg { background: var(--color-secondary); }
.section-dark { background: var(--color-text); color: var(--color-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--color-white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
    color: var(--color-text-light);
    font-size: 1.05rem;
}

/* === Features === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}
.feature {
    text-align: center;
    padding: 2rem 1rem;
}
.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}
.feature p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* === Products Grid === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.product-image {
    height: 280px;
    overflow: hidden;
    background: var(--color-secondary);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info {
    padding: 1.5rem;
    text-align: center;
}
.product-category {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.product-info p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* === Two Columns === */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-cols img {
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}
.two-cols-content h2 { margin-bottom: 1.5rem; }
.two-cols-content p {
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
}

/* === Services === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.service-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.service-content {
    padding: 2rem;
}
.service-content h3 { margin-bottom: 1rem; }
.service-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}
.service-content ul {
    list-style: none;
    padding: 0;
}
.service-content ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.95rem;
}
.service-content ul li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* === Testimonials === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.testimonial-stars {
    color: #e8b923;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: 500;
    color: var(--color-text);
}
.testimonial-author small {
    display: block;
    color: var(--color-text-light);
    font-weight: 300;
    margin-top: 0.3rem;
    font-size: 0.85rem;
}

/* === CTA === */
.cta-banner {
    background: linear-gradient(rgba(44, 37, 32, 0.7), rgba(44, 37, 32, 0.7)), url('images/wedding.jpg') center/cover;
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
}
.cta-banner h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}
.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(rgba(44, 37, 32, 0.5), rgba(44, 37, 32, 0.5)), var(--color-secondary);
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    text-align: center;
    color: var(--color-white);
}
.page-header h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.9;
}
.breadcrumb a { color: var(--color-white); }

/* === Content === */
.content-page {
    padding: 4rem 0;
}
.content-page .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
    margin-top: 2rem;
    color: var(--color-text);
}
.content-page p {
    color: var(--color-text-light);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}
.content-page ul, .content-page ol {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}
.content-page ul li, .content-page ol li {
    margin-bottom: 0.5rem;
}
.content-page strong { color: var(--color-text); }

.last-updated {
    background: var(--color-secondary);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}
.contact-block {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}
.contact-block-icon {
    width: 45px;
    height: 45px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}
.contact-block-content h4 {
    margin-bottom: 0.3rem;
    color: var(--color-text);
}
.contact-block-content p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-check {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}
.form-check input {
    margin-top: 0.25rem;
    width: auto;
}

.form-success, .form-error {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}
.form-success {
    background: #e3f3e6;
    color: #2d6a3e;
    border: 1px solid #b9dfc1;
}
.form-error {
    background: #fbe6e6;
    color: #8a2828;
    border: 1px solid #f0b9b9;
}

.map-section {
    margin-top: 4rem;
}
.map-wrapper {
    height: 380px;
    background: var(--color-secondary);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 2rem;
}
.map-wrapper-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* === Footer === */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-title {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 500;
}
.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-list {
    list-style: none;
}
.footer-list li {
    margin-bottom: 0.7rem;
}
.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-list a:hover { color: var(--color-primary); }
.footer-address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}
.footer-address a {
    color: rgba(255, 255, 255, 0.85);
}
.footer-address a:hover { color: var(--color-primary); }
.footer-address p { margin-bottom: 0.6rem; }
.footer-hours {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-hours strong { color: var(--color-white); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* === Cookie banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1.5rem 0;
}
.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-inner p {
    margin: 0;
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    color: var(--color-text);
}
.cookie-buttons {
    display: flex;
    gap: 0.8rem;
}
.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* === Responsive === */
@media (max-width: 968px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-cols, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-cols img { order: -1; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .main-nav.open { max-height: 400px; }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    .main-nav li {
        border-bottom: 1px solid var(--color-border);
    }
    .main-nav li:last-child { border-bottom: none; }
    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
    }
    .header-top-inner { gap: 1rem; font-size: 0.75rem; }
    .header-info { font-size: 0.75rem; }
    .section { padding: 3.5rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { text-align: center; justify-content: center; flex-direction: column; }
    .hero { min-height: 70vh; }
    .hero-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
    .header-top { display: none; }
    .container { padding: 0 1rem; }
    .logo-text { font-size: 1.4rem; }
    .contact-form { padding: 1.5rem; }
}
