:root {
    /* Brand Colors */
    --primary-orange: #E35C2A;
    --primary-orange-hover: #C54B1D;
    --accent-green: #5D8A4D;
    --bg-white: #FFFFFF;
    --bg-alt: #F8F8F8;
    --text-main: #1F1F1F;
    --text-secondary: #555555;
    --border-color: #EEEEEE;

    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    
    /* Layout */
    --radius: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.1);
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
body {
    font-family: var(--body-font);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.3;
}

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

a:hover {
    color: var(--primary-orange-hover);
}

/* Utilities */
.section-padding { padding: 100px 0; }
.bg-alt { background-color: var(--bg-alt); }
.text-serif { font-family: var(--heading-font); }
.small-caps { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    font-weight: 700; 
}

/* Header & Nav */
.top-bar {
    background-color: var(--text-main);
    color: white;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-family: var(--heading-font);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-main) !important;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main) !important;
    margin: 0 10px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-orange) !important;
}

.btn-contact {
    background-color: var(--primary-orange);
    color: white !important;
    border-radius: var(--radius);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
}

.btn-contact:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    overflow: hidden;
}

.hero-tagline {
    color: var(--primary-orange);
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* Recipe Cards */
.recipe-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.recipe-card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 70%; /* 10:7 aspect ratio */
}

.recipe-card-img-link img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.recipe-card:hover .recipe-card-img-link img {
    transform: scale(1.08);
}

.recipe-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recipe-card-category {
    color: var(--primary-orange);
    margin-bottom: 0.8rem;
    display: block;
}

.recipe-card-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.recipe-card-title a {
    color: var(--text-main);
}

.recipe-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.recipe-meta {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.meta-icon-img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    object-fit: contain;
}

/* Authority Sections */
.authority-block {
    background: white;
    padding: 60px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.test-step {
    padding: 30px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    height: 100%;
}

.test-step img {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* Author Section */
.author-profile {
    display: flex;
    align-items: center;
    gap: 80px;
}

.author-image {
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Newsletter */
.newsletter-section {
    background-color: var(--text-main);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 40px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 15px 25px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
}

.btn-subscribe {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: var(--radius);
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #0F0F0F;
    color: #999999;
    padding: 100px 0 40px;
}

.footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-family: var(--body-font);
    font-weight: 700;
}

.footer-brand {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li { margin-bottom: 1rem; }

.footer-links a {
    color: #999999;
    font-size: 0.95rem;
}

.footer-links a:hover { color: white; }

.footer-bottom {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #222222;
    font-size: 0.85rem;
}

/* Recipe Content (Single Page) */
.recipe-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.recipe-breadcrumb {
    justify-content: center;
    margin-bottom: 2rem;
}

.recipe-main-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.recipe-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.recipe-info-card {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius);
    margin: 60px 0;
}

.ingredient-list li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E5E5;
}

.step-card {
    margin-bottom: 40px;
}

.step-number {
    color: var(--primary-orange);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .author-profile { gap: 40px; }
    .author-image { width: 350px; height: 350px; }
}

@media (max-width: 991px) {
    .hero-section { padding: 80px 0; }
    .hero-title { font-size: 3rem; }
    .hero-image { height: 450px; }
    .author-profile { flex-direction: column; text-align: center; }
    .author-image { width: 100%; max-width: 400px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 60px 0; }
    .newsletter-form { flex-direction: column; }
    .recipe-main-image { height: 400px; }
    .legal-page { padding: 60px 0; }
    .legal-content { padding: 0 16px; }
}
