:root {
    --cream: #fdf6ec;
    --crust: #c98a4b;
    --crust-dark: #8b5a2b;
    --chocolate: #3a2418;
    --rye: #6b4423;
    --berry: #a23e48;
    --soft: #f5e6d3;
    --shadow: 0 4px 16px rgba(58, 36, 24, 0.12);
    --shadow-hover: 0 8px 28px rgba(58, 36, 24, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: var(--cream);
    color: var(--chocolate);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------- Header / Navigation ---------- */
header {
    background: linear-gradient(135deg, var(--crust-dark), var(--rye));
    color: var(--cream);
    padding: 2rem 1.5rem 1rem;
    box-shadow: var(--shadow);
}

.brand {
    text-align: center;
    margin-bottom: 1rem;
}

.brand h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    font-weight: normal;
    font-variant: small-caps;
}

.brand .tagline {
    font-style: italic;
    color: var(--soft);
    font-size: 1rem;
    margin-top: 0.3rem;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(253, 246, 236, 0.25);
    margin-top: 1rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

nav a:hover,
nav a.active {
    border-bottom-color: var(--cream);
}

/* ---------- Main / Layout ---------- */
main {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

section {
    margin-bottom: 3.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--rye);
    margin-bottom: 1rem;
    font-variant: small-caps;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--crust);
    padding-bottom: 0.4rem;
    display: inline-block;
}

h3 {
    font-size: 1.4rem;
    color: var(--crust-dark);
    margin: 1.2rem 0 0.6rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--berry);
}

/* ---------- Hero (home page) ---------- */
.hero {
    background: var(--soft);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.hero h2 {
    border-bottom: none;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.hero .lead {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--rye);
    max-width: 720px;
    margin: 0 auto;
}

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery figure {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

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

.gallery .photo {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--soft);
}

.gallery figcaption {
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    color: var(--rye);
    font-style: italic;
    text-align: center;
}

/* Placeholder backgrounds — gradient stand-ins until real photos are added */
.photo-1 { background-image: linear-gradient(135deg, #e8b984, #c98a4b); }
.photo-2 { background-image: linear-gradient(135deg, #f5d6a3, #a26c3c); }
.photo-3 { background-image: linear-gradient(135deg, #d9a878, #6b4423); }
.photo-4 { background-image: linear-gradient(135deg, #f0c896, #8b5a2b); }
.photo-5 { background-image: linear-gradient(135deg, #e3b07d, #b87333); }
.photo-6 { background-image: linear-gradient(135deg, #efd5b1, #94552a); }

/* ---------- Recipes ---------- */
.recipe {
    background: white;
    border-left: 5px solid var(--crust);
    border-radius: 4px;
    padding: 1.6rem 1.8rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: var(--rye);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.recipe-meta span::before {
    content: "•  ";
    color: var(--crust);
}

.recipe-meta span:first-child::before {
    content: "";
}

.recipe h4 {
    color: var(--rye);
    margin: 1rem 0 0.4rem;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe ul,
.recipe ol {
    padding-left: 1.4rem;
}

.recipe li {
    margin-bottom: 0.4rem;
}

/* ---------- Contact / Pricing ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.6rem;
    border-radius: 6px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card h3 {
    margin-top: 0;
    color: var(--rye);
}

.contact-card .label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--crust-dark);
    margin-bottom: 0.3rem;
}

.contact-card .value {
    font-size: 1.15rem;
    color: var(--chocolate);
    word-break: break-word;
}

.pricing {
    background: var(--soft);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--soft);
}

.pricing-table th {
    background: var(--rye);
    color: var(--cream);
    font-variant: small-caps;
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table .price {
    font-weight: bold;
    color: var(--berry);
    white-space: nowrap;
}

.pricing-note {
    margin-top: 1rem;
    font-style: italic;
    color: var(--rye);
    font-size: 0.95rem;
}

/* ---------- Footer ---------- */
footer {
    background: var(--chocolate);
    color: var(--soft);
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

footer p + p {
    margin-top: 0.3rem;
    color: var(--crust);
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
    .brand h1 { font-size: 2rem; }
    nav ul { flex-wrap: wrap; gap: 1rem; }
    main { padding: 2rem 1rem; }
    .hero { padding: 2rem 1rem; }
    .hero h2 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
}
