:root {
    --bg: #FAFAF8; /* Subtle warm cream */
    --surface: #FFFFFF;
    --beige: #EBE7E0; /* Distinct elegant beige for contrast */
    --beige-dark: #DCD7CE; 
    --text: #222222;
    --accent: #A68A64; /* Sophisticated muted gold/bronze */
    --accent-dark: #1E352F; /* Deep forest green */
    --border-color: #E6E1D8;
    --muted: #7A7A78;
    --border-width: 1px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--beige); /* Darker elegant base to make white containers pop */
    color: var(--text);
    line-height: 1.6;
    font-weight: 300;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--beige);
    padding: 2rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98); /* Solid white contrast */
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 2px solid var(--accent);
}

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

.logo {
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    position: relative;
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
}

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

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

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text);
    color: var(--text);
}

.btn-secondary:hover {
    background: var(--text);
    color: white;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 8rem 5% 2rem;
    display: flex;
    align-items: center;
    gap: 6rem;
    margin: 0 auto;
    background-color: var(--surface); /* Pure white to pop from the beige body */
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('pattern_elegant.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15; /* Subtle pattern */
    z-index: -1;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: min(4.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--text);
}

.hero p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    line-height: 1.4;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 80vh; /* Make it bigger */
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(250,250,248,1) 0%, rgba(250,250,248,0.7) 40%, rgba(250,250,248,0) 75%); /* Cream gradient around image */
}

.hero-image img {
    width: 120%; /* Scaled for impact */
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15)); /* High end floating shadow */
    animation: gentle-float 8s ease-in-out infinite;
}

@keyframes gentle-float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-1deg) scale(1.02); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header .subtitle {
    display: block;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text);
}

.section-header p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--muted);
}

/* Reviews Section */
.reviews-section {
    background: var(--surface);
    position: relative;
}

.filter-wrapper {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 2rem;
    background: transparent;
    padding: 0 2rem;
}

.search-box {
    flex: 2;
    display: flex;
    align-items: center;
    border: 1px solid var(--accent);
    background: var(--surface);
    padding-bottom: 0;
}

.search-box i {
    color: var(--accent);
    width: 20px;
    height: 20px;
    margin-left: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem;
    border: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
    color: var(--text);
}

.genre-box {
    flex: 1;
    border: 1px solid var(--accent);
    background: var(--surface);
}

.genre-box select {
    width: 100%;
    height: 100%;
    padding: 1rem;
    border: none;
    background: transparent;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    color: var(--text);
}

.reviews-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem 3rem;
    padding: 0 2rem 2rem;
}

.review-card {
    background: var(--surface);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: transparent;
}

.card-image-box {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.review-card:hover .card-image-box img {
    transform: scale(1.05);
}

.genre-tag {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 0.4rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.new-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.date-meta {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.review-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-weight: 400;
}

.author {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.excerpt {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 2rem;
    flex: 1;
    line-height: 1.6;
}

.rating-box {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rating-box i {
    width: 16px;
    height: 16px;
    color: #E8E5E1;
}

.rating-box i.active {
    fill: var(--accent);
    color: var(--accent);
}

.load-more-container {
    text-align: center;
    margin-top: 4rem;
}

/* About Grid */
.about-section {
    padding: 8rem 2rem;
    background-color: var(--beige);
    position: relative;
    z-index: 1;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('pattern_elegant.jpg');
    background-size: 400px;
    opacity: 0.50; /* 50% opacity pattern */
    z-index: -1;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    padding: 3rem;
    background: radial-gradient(circle, rgba(250,250,248,1) 40%, rgba(250,250,248,0.8) 60%, rgba(250,250,248,0) 80%); /* Stronger Cream gradient aura */
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.about-text {
    background: rgba(250, 250, 248, 0.95); /* Cream container */
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text);
}

.text-content p:first-child {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    line-height: 1.6;
}

/* Policy Section */
.policy-section {
    background: var(--surface);
    padding: 8rem 2rem;
}

.policy-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
}

.policy-card {
    text-align: left;
}

.policy-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.7;
}

.policy-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
}

.policy-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.policy-callout {
    max-width: 900px;
    margin: 6rem auto 0;
    background-color: #F4F2EE;
    background-image: url('pattern_elegant.jpg');
    background-size: cover;
    background-position: top center;
    padding: 3rem;
    text-align: center;
    border-radius: 2px;
    position: relative;
}

.policy-callout::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(244, 242, 238, 0.9); /* Overlay to keep text perfectly legible */
    border-radius: 2px;
    z-index: 1;
}

.policy-callout p, .policy-callout strong {
    position: relative;
    z-index: 2;
}

.policy-callout p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text);
}

.policy-callout strong {
    font-family: 'Lato', sans-serif;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background-color: var(--beige);
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('pattern_elegant.jpg');
    background-size: 800px;
    opacity: 0.15; /* Much lower opacity */
    z-index: -1;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(250,250,248,0.95) 0%, rgba(250,250,248,0.75) 60%, rgba(250,250,248,0) 90%);
    padding: 4rem;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.contact-meta {
    list-style: none;
    margin-top: 4rem;
}

.contact-meta li {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-weight: 700; /* Bolded for contrast */
}

.contact-meta strong {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-item label {
    font-size: 0.8rem;
    font-weight: 700; /* Bolded for contrast */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--text);
}

.form-item input, .form-item select, .form-item textarea {
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    background: var(--surface);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    color: var(--text);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.form-item input:focus, .form-item select:focus, .form-item textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(166, 138, 100, 0.1);
}

.form-item textarea {
    height: 120px;
    resize: none;
}

.footer {
    padding: 3rem;
    text-align: center;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        padding-top: 8rem;
        gap: 3rem;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    .hero-image {
        width: 100%;
        height: auto;
    }
    .hero-image::before {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .about-image {
        padding: 0;
    }
    .about-image::before {
        display: none;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
}
