/* ============================================================
   A Taste of Chios — Stylesheet
   Fonts: Playfair Display (display) + Lato (body)
   Palette: Aegean Blue, Terracotta, Olive, Cream, Sand
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --aegean:      #1a4f7a;
    --aegean-dark: #0f3358;
    --aegean-lite: #2a6fa8;
    --terracotta:  #c9503a;
    --terra-lite:  #e06b54;
    --olive:       #6b7c3a;
    --olive-lite:  #8a9f4e;
    --gold:        #d4a843;
    --gold-lite:   #e8c16a;
    --cream:       #fdf6ec;
    --sand:        #f0e8d8;
    --sand-dark:   #e0d4be;
    --white:       #ffffff;
    --gray-50:     #fafaf8;
    --gray-100:    #f5f3ef;
    --gray-200:    #e8e4dc;
    --gray-300:    #d0cbc0;
    --gray-400:    #a89f90;
    --gray-500:    #7a7060;
    --gray-600:    #5a5248;
    --gray-700:    #3d3830;
    --gray-900:    #1e1a14;
    --green:       #3a7a4a;
    --green-bg:    #e8f5ec;
    --red:         #c0392b;
    --red-bg:      #fdecea;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif:   'Cormorant Garamond', Georgia, serif;
    --font-body:    'Lato', system-ui, sans-serif;
    --radius:       8px;
    --radius-lg:    16px;
    --shadow:       0 2px 16px rgba(26,79,122,0.10);
    --shadow-lg:    0 8px 48px rgba(26,79,122,0.15);
    --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--aegean-dark);
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.75; }
a  { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terra-lite); }

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

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 26px; border-radius: var(--radius);
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.9rem; letter-spacing: 0.04em;
    text-transform: uppercase; cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition); text-decoration: none;
    white-space: nowrap;
}
.btn-primary  { background: var(--terracotta); color: white; border-color: var(--terracotta); }
.btn-primary:hover { background: var(--terra-lite); border-color: var(--terra-lite); color: white; }
.btn-aegean   { background: var(--aegean); color: white; border-color: var(--aegean); }
.btn-aegean:hover { background: var(--aegean-lite); color: white; }
.btn-olive    { background: var(--olive); color: white; border-color: var(--olive); }
.btn-olive:hover { background: var(--olive-lite); color: white; }
.btn-outline  { background: transparent; color: var(--aegean); border-color: var(--aegean); }
.btn-outline:hover { background: var(--aegean); color: white; }
.btn-outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: white; }
.btn-ghost    { background: var(--sand); color: var(--gray-700); border-color: var(--sand-dark); }
.btn-ghost:hover { background: var(--sand-dark); }
.btn-sm       { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg       { padding: 16px 40px; font-size: 1rem; }
.btn-full     { width: 100%; justify-content: center; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid var(--gray-200); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.95rem; color: var(--gray-900);
    background: white; transition: border-color var(--transition); appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(201,80,58,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ── Badges ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; }
.badge-terracotta { background: #fdecea; color: var(--terracotta); }
.badge-aegean     { background: #e8f2fa; color: var(--aegean); }
.badge-olive      { background: #eef2e4; color: var(--olive); }
.badge-gold       { background: #fdf5e0; color: #a07820; }

/* ── Flash ── */
.flash { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 24px; font-weight: 600; font-size: 0.9rem; }
.flash-success { background: var(--green-bg); color: var(--green); }
.flash-error   { background: var(--red-bg);   color: var(--red); }

/* ── Stars ── */
.star { font-size: 1rem; }
.star.filled { color: var(--gold); }
.star.empty  { color: var(--gray-300); }

/* ── Section labels ── */
.section-label {
    display: inline-block;
    font-family: var(--font-body); font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 12px;
}
.section-label::before { content: '— '; }
.section-label::after  { content: ' —'; }

/* ── Header ── */
.site-header {
    background: white; border-bottom: 1px solid var(--sand-dark);
    position: sticky; top: 0; z-index: 900;
    box-shadow: 0 1px 12px rgba(26,79,122,0.08);
}
.header-inner {
    display: flex; align-items: center; height: 72px; gap: 24px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.logo-main { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--aegean-dark); line-height: 1; }
.logo-main em { color: var(--terracotta); font-style: italic; }
.logo-sub { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-400); margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a:not(.btn) {
    padding: 6px 14px; color: var(--gray-600); font-weight: 700;
    font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
    border-radius: 6px; transition: all var(--transition);
}
.main-nav a:not(.btn):hover { color: var(--terracotta); background: var(--cream); }
.main-nav a:not(.btn).active { color: var(--terracotta); }

.cart-icon {
    position: relative; display: flex; align-items: center;
    padding: 8px 14px; border-radius: 6px; color: var(--aegean-dark);
    font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em;
    text-transform: uppercase; transition: all var(--transition);
    border: 2px solid var(--sand-dark); gap: 6px;
}
.cart-icon:hover { background: var(--cream); color: var(--terracotta); border-color: var(--terracotta); }
.cart-badge {
    position: absolute; top: -6px; right: -6px;
    background: var(--terracotta); color: white;
    font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px;
    border-radius: 100px; display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--aegean-dark); border-radius: 2px; transition: all var(--transition); }
.mobile-nav { display: none; flex-direction: column; background: white; border-bottom: 1px solid var(--sand-dark); padding: 12px 24px 20px; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 0; color: var(--gray-700); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--gray-100); }
@media (max-width: 900px) { .main-nav { display: none; } .mobile-menu-toggle { display: flex; } }

/* ── Hero ── */
.hero-full {
    background: linear-gradient(160deg, rgba(10,40,70,0.55) 0%, rgba(26,79,122,0.45) 100%),
                url('/assets/images/hero.jpg') center/cover no-repeat;
    min-height: 86vh; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-full::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 0l40 40-40 40L0 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-full::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, white, transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-lite); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; flex: 0 0 32px; height: 1px; background: var(--gold-lite); opacity: 0.6; }
.hero-full h1 { color: white; margin-bottom: 20px; font-size: clamp(2.5rem, 6vw, 4rem); }
.hero-full h1 em { color: var(--gold-lite); font-style: italic; }
.hero-full p { color: rgba(255,255,255,0.82); font-size: 1.12rem; margin-bottom: 40px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section ── */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-sand { background: var(--sand); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { color: var(--gray-500); margin-top: 12px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }

.product-card {
    background: white; border: 1px solid var(--sand-dark); border-radius: var(--radius-lg);
    overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gray-300); }
.product-img {
    aspect-ratio: 1; background: var(--sand);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; overflow: hidden; position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .product-emoji { font-size: 4rem; }
.product-badge { position: absolute; top: 12px; left: 12px; }
.product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3; }
.product-body h3 a { color: var(--aegean-dark); }
.product-body h3 a:hover { color: var(--terracotta); }
.product-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--aegean-dark); }
.product-sale { color: var(--terracotta); }
.product-was  { color: var(--gray-400); text-decoration: line-through; font-size: 0.9rem; margin-right: 6px; }
.product-origin { font-size: 0.72rem; color: var(--gray-400); margin-top: 4px; letter-spacing: 0.04em; }

/* ── Travelogue Cards ── */
.travelogue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }

.travel-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--sand-dark); transition: all var(--transition);
    display: flex; flex-direction: column;
}
.travel-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.travel-card-img {
    height: 200px; background: var(--aegean);
    display: flex; align-items: flex-end; padding: 20px;
    position: relative; overflow: hidden;
}
.travel-card-img .img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,40,70,0.7) 100%);
}
.travel-card-img .travel-emoji { font-size: 3.5rem; position: absolute; top: 20px; right: 20px; opacity: 0.8; }
.travel-type-tag {
    position: relative; z-index: 1;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.25); padding: 4px 10px; border-radius: 100px;
}
.travel-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.travel-card-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.travel-card-body h3 a { color: var(--aegean-dark); }
.travel-card-body h3 a:hover { color: var(--terracotta); }
.travel-subtitle { font-style: italic; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 12px; font-family: var(--font-serif); }
.travel-card-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--sand); display: flex; justify-content: space-between; align-items: center; }
.travel-region { font-size: 0.78rem; color: var(--gray-400); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Recipe Cards ── */
.recipes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

.recipe-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--sand-dark); transition: all var(--transition);
}
.recipe-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.recipe-card-img { height: 200px; background: var(--sand); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.recipe-emoji { font-size: 4rem; }
.recipe-difficulty { position: absolute; top: 12px; right: 12px; }
.recipe-card-body { padding: 22px; }
.recipe-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 12px; }
.recipe-meta-item { display: flex; align-items: center; gap: 4px; }
.recipe-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.recipe-card-body h3 a { color: var(--aegean-dark); }
.recipe-card-body h3 a:hover { color: var(--terracotta); }
.recipe-card-body p { font-size: 0.875rem; color: var(--gray-500); }

/* ── Single Recipe/Post Page ── */
.page-single { padding: 56px 0 80px; }
.page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .page-grid { grid-template-columns: 1fr; } }

.breadcrumb { font-size: 0.82rem; color: var(--gray-400); margin-bottom: 28px; }
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--terracotta); }

.prose h2, .prose h3 { margin-top: 32px; margin-bottom: 12px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--gray-600); margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { color: var(--gray-600); margin-bottom: 6px; line-height: 1.7; }
.prose blockquote { border-left: 4px solid var(--gold); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--gray-500); font-family: var(--font-serif); font-size: 1.1rem; }

.recipe-ingredients, .recipe-instructions { background: var(--cream); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 28px; }
.recipe-ingredients h3, .recipe-instructions h3 { margin-bottom: 16px; font-size: 1.15rem; color: var(--terracotta); }
.recipe-ingredients ul { list-style: none; padding: 0; }
.recipe-ingredients li { padding: 8px 0; border-bottom: 1px solid var(--sand-dark); font-size: 0.95rem; color: var(--gray-600); }
.recipe-ingredients li:last-child { border-bottom: none; }
.recipe-instructions ol { padding-left: 0; list-style: none; counter-reset: steps; }
.recipe-instructions li { counter-increment: steps; padding: 12px 0 12px 48px; position: relative; border-bottom: 1px solid var(--sand-dark); font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.recipe-instructions li:last-child { border-bottom: none; }
.recipe-instructions li::before { content: counter(steps); position: absolute; left: 0; top: 10px; width: 30px; height: 30px; background: var(--terracotta); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }

.sidebar-card { background: var(--cream); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; border: 1px solid var(--sand-dark); }
.sidebar-card h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--sand-dark); color: var(--terracotta); }

/* ── Shop Sidebar ── */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-filters { background: var(--cream); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--sand-dark); position: sticky; top: 88px; }
.shop-filters h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 14px; }
.filter-link { display: block; padding: 8px 12px; border-radius: 6px; color: var(--gray-600); font-size: 0.9rem; font-weight: 400; margin-bottom: 2px; transition: all var(--transition); }
.filter-link:hover, .filter-link.active { background: white; color: var(--terracotta); font-weight: 700; }

/* ── Cart ── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 10px 16px; color: var(--gray-500); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; border-bottom: 2px solid var(--sand-dark); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--sand); vertical-align: middle; }
.cart-totals { background: var(--cream); border-radius: var(--radius-lg); padding: 28px; }
.cart-totals .total-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.95rem; border-bottom: 1px solid var(--sand-dark); }
.cart-totals .total-row.grand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; border-bottom: none; color: var(--aegean-dark); padding-top: 16px; }

/* ── Map (Explore page) ── */
.explore-layout { display: grid; grid-template-columns: 340px 1fr; height: calc(100vh - 72px); overflow: hidden; }
@media (max-width: 900px) { .explore-layout { grid-template-columns: 1fr; grid-template-rows: 50vh 1fr; height: auto; } }
.explore-sidebar { display: flex; flex-direction: column; border-right: 1px solid var(--sand-dark); overflow: hidden; }
.explore-filters { padding: 14px; border-bottom: 1px solid var(--sand-dark); background: var(--cream); }
.place-type-filters { display: flex; gap: 6px; flex-wrap: wrap; padding: 12px 14px; border-bottom: 1px solid var(--sand-dark); background: white; }
.place-type-btn { padding: 5px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; cursor: pointer; border: 2px solid var(--sand-dark); background: white; color: var(--gray-600); transition: all var(--transition); font-family: var(--font-body); }
.place-type-btn:hover, .place-type-btn.active { border-color: var(--terracotta); color: var(--terracotta); background: rgba(201,80,58,0.06); }
.places-list { flex: 1; overflow-y: auto; }
.places-list::-webkit-scrollbar { width: 4px; }
.places-list::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

.place-list-item { padding: 14px 16px; border-bottom: 1px solid var(--sand); cursor: pointer; transition: background var(--transition); }
.place-list-item:hover, .place-list-item.active { background: var(--cream); }
.place-list-item h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--aegean-dark); }
.place-list-item .place-type-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.place-list-item .place-rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--gray-500); margin-top: 4px; }

.map-container { position: relative; flex: 1; min-height: 0; }
#explore-map { width: 100%; height: 100%; min-height: 500px; }

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper { border-radius: var(--radius) !important; box-shadow: var(--shadow-lg) !important; border: 1px solid var(--sand-dark) !important; padding: 0 !important; overflow: hidden; }
.leaflet-popup-content { margin: 0 !important; width: 260px !important; }
.map-popup { padding: 14px; }
.map-popup h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; color: var(--aegean-dark); }
.map-popup .type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--terracotta); margin-bottom: 8px; }
.map-popup .rating { font-size: 0.82rem; color: var(--gray-500); }
.leaflet-popup-tip-container { display: none; }

/* ── Reviews ── */
.review-card { background: var(--cream); border-radius: var(--radius); padding: 20px; margin-bottom: 16px; border-left: 3px solid var(--gold); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--aegean-dark); }
.review-date { font-size: 0.78rem; color: var(--gray-400); }
.review-title { font-weight: 700; margin-bottom: 6px; color: var(--gray-700); }
.review-body { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; }

/* ── Coming Soon ── */
.coming-soon {
    min-height: calc(100vh - 72px);
    background: linear-gradient(135deg, var(--aegean-dark) 0%, var(--aegean) 100%);
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.coming-soon h1 { color: white; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.coming-soon h1 em { color: var(--gold-lite); }
.coming-soon p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin: 0 auto 36px; }

/* ── CTA Banner ── */
.cta-banner { background: var(--aegean-dark); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; }
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 14px; max-width: 240px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 560px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 { color: white; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-lite); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 48px; padding: 20px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-logo-main { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.footer-logo-main em { color: var(--gold-lite); font-style: italic; }

/* ── Print styles ── */
@media print {
    .site-header, .site-footer, .sidebar-card, .btn, .breadcrumb, nav { display: none !important; }
    body { background: white; color: black; font-size: 12pt; }
    .page-grid { grid-template-columns: 1fr; }
    .recipe-ingredients, .recipe-instructions { background: #f9f9f9; }
}

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.hidden { display: none !important; }
@media (max-width: 640px) { .section { padding: 52px 0; } }
