/* ========== Tokens ========== */
:root {
    --cream: #faf5ec;
    --cream-2: #f3ead8;
    --paper: #ffffff;
    --ink: #2a1d10;
    --ink-soft: #5a4632;
    --muted: #8a7860;
    --brand: #8b5a2b;
    --brand-dark: #6b4321;
    --gold: #b8893f;
    --line: rgba(139, 90, 43, 0.18);
    --shadow: 0 10px 30px -10px rgba(74, 47, 22, 0.25);
    --radius: 14px;

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0 0 0.6rem;
    line-height: 1.15;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.4rem; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.7rem;
}

/* ========== Intro overlay ========== */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background:
        radial-gradient(ellipse at center, #f5ead6 0%, #efe1c8 55%, #e6d4b1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: introFade 2.4s ease forwards;
    pointer-events: none;
}

.intro-overlay::before,
.intro-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.intro-overlay::before {
    background: radial-gradient(circle at 20% 30%, rgba(184, 137, 63, 0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(184, 137, 63, 0.08), transparent 40%);
}
.intro-overlay::after {
    box-shadow: inset 0 0 200px rgba(74, 47, 22, 0.12);
}

.intro-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    z-index: 2;
}

.intro-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    transform: translate(-50%, calc(-50% - 50px)) scale(0.2);
    background: radial-gradient(circle, rgba(184, 137, 63, 0.35) 0%, rgba(184, 137, 63, 0.12) 35%, transparent 70%);
    opacity: 0;
    animation: introHalo 2.4s ease forwards;
    z-index: -1;
}

@keyframes introHalo {
    0%   { opacity: 0; transform: translate(-50%, calc(-50% - 50px)) scale(0.2); }
    30%  { opacity: 1; transform: translate(-50%, calc(-50% - 50px)) scale(1); }
    65%  { opacity: 0.8; transform: translate(-50%, calc(-50% - 50px)) scale(1.15); }
    100% { opacity: 0; transform: translate(-50%, calc(-50% - 50px)) scale(1.4); }
}

.intro-logo {
    width: clamp(180px, 24vw, 260px);
    height: auto;
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
    animation: introLogo 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    filter: drop-shadow(0 14px 30px rgba(74, 47, 22, 0.22));
}

@keyframes introLogo {
    0%   { opacity: 0; transform: scale(0.7) rotate(-8deg); }
    30%  { opacity: 1; transform: scale(1.02) rotate(0deg); }
    45%  { transform: scale(1) rotate(0deg); }
    80%  { opacity: 1; transform: scale(1) rotate(0deg); }
    100% { opacity: 0; transform: scale(1.05) rotate(0deg); }
}

.intro-wordmark {
    display: flex;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.32em;
    padding-left: 0.32em;
}

.intro-wordmark span {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    animation: introLetter 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(0.55s + var(--i) * 0.045s);
}

.intro-wordmark .intro-gap { width: 0.55em; }

@keyframes introLetter {
    0%   { opacity: 0; transform: translateY(14px); }
    40%  { opacity: 1; transform: translateY(0); }
    75%  { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-4px); }
}

.intro-line {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: introLine 2.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes introLine {
    0%   { width: 0; opacity: 0; }
    35%  { width: 180px; opacity: 1; }
    75%  { width: 180px; opacity: 1; }
    100% { width: 200px; opacity: 0; }
}

/* Floating flour particles */
.intro-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intro-particles span {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(184, 137, 63, 0.55);
    box-shadow: 0 0 10px rgba(184, 137, 63, 0.45);
    opacity: 0;
    animation: floatUp linear forwards;
}

.intro-particles span:nth-child(1)  { left: 10%; bottom: -10px; width: 5px; height: 5px; animation-duration: 2.4s; animation-delay: 0.1s; }
.intro-particles span:nth-child(2)  { left: 22%; bottom: -10px; width: 8px; height: 8px; animation-duration: 2.2s; animation-delay: 0.4s; }
.intro-particles span:nth-child(3)  { left: 34%; bottom: -10px; width: 4px; height: 4px; animation-duration: 2.6s; animation-delay: 0.0s; }
.intro-particles span:nth-child(4)  { left: 46%; bottom: -10px; width: 7px; height: 7px; animation-duration: 2.3s; animation-delay: 0.6s; }
.intro-particles span:nth-child(5)  { left: 58%; bottom: -10px; width: 5px; height: 5px; animation-duration: 2.5s; animation-delay: 0.2s; }
.intro-particles span:nth-child(6)  { left: 68%; bottom: -10px; width: 9px; height: 9px; animation-duration: 2.1s; animation-delay: 0.5s; }
.intro-particles span:nth-child(7)  { left: 78%; bottom: -10px; width: 4px; height: 4px; animation-duration: 2.4s; animation-delay: 0.3s; }
.intro-particles span:nth-child(8)  { left: 88%; bottom: -10px; width: 6px; height: 6px; animation-duration: 2.3s; animation-delay: 0.7s; }
.intro-particles span:nth-child(9)  { left: 15%; bottom: -10px; width: 3px; height: 3px; animation-duration: 2.7s; animation-delay: 0.8s; }
.intro-particles span:nth-child(10) { left: 50%; bottom: -10px; width: 4px; height: 4px; animation-duration: 2.5s; animation-delay: 0.9s; }
.intro-particles span:nth-child(11) { left: 72%; bottom: -10px; width: 5px; height: 5px; animation-duration: 2.4s; animation-delay: 1.0s; }
.intro-particles span:nth-child(12) { left: 30%; bottom: -10px; width: 7px; height: 7px; animation-duration: 2.6s; animation-delay: 0.45s; }

@keyframes floatUp {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    15%  { opacity: 1; }
    100% { transform: translateY(-110vh) translateX(40px); opacity: 0; }
}

@keyframes introFade {
    0%, 75% { opacity: 1; visibility: visible; }
    100%    { opacity: 0; visibility: hidden; }
}

/* Reveal the page content underneath the overlay */
.site-header,
main {
    opacity: 0;
    animation: pageReveal 1s ease 1.7s forwards;
}

@keyframes pageReveal {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .intro-overlay { display: none; }
    .site-header, main { opacity: 1; animation: none; }
}

/* ========== Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 245, 236, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-container {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.75rem clamp(1rem, 2vw, 1.75rem);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.brand-logo {
    height: 110px;
    width: auto;
    transition: transform 0.25s;
}
.brand:hover .brand-logo { transform: rotate(-3deg); }

.brand-wordmark {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.18em;
    line-height: 1;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 1.8rem;
    flex: 1;
    justify-content: center;
}

.main-nav a {
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--brand);
    transition: width 0.25s ease;
}

.main-nav a:hover { color: var(--brand-dark); }
.main-nav a:hover::after { width: 100%; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-weight: 500;
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    transition: color 0.2s;
    letter-spacing: 0.05em;
}

.lang-btn.active { color: var(--brand-dark); font-weight: 600; }
.lang-btn:hover { color: var(--brand); }
.lang-sep { color: var(--muted); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-soft);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5ead6 0%, #efe1c8 60%, #e6d4b1 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    width: min(1320px, 94vw);
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px -20px rgba(74, 47, 22, 0.35);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: relative;
    padding: 1rem 0;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 2px;
    background: var(--gold);
}

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
    margin: 0.9rem 0 1rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    color: var(--ink);
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.12;
}

.hero-sub {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--ink-soft);
    margin: 0 0 1.8rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.78rem 1.6rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.15s, background-color 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); }

.btn-ghost {
    background: transparent;
    color: var(--brand-dark);
    border-color: var(--brand);
}
.btn-ghost:hover { background: var(--brand); color: #fff; }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; letter-spacing: 0.04em; }

.btn-review {
    background: linear-gradient(135deg, #f0c14b 0%, #d99a2b 100%);
    color: #4a2f16;
    gap: 0.45rem;
    border-color: transparent;
    box-shadow: 0 4px 14px -4px rgba(184, 137, 63, 0.55);
}
.btn-review:hover {
    color: #4a2f16;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -6px rgba(184, 137, 63, 0.7);
    background: linear-gradient(135deg, #f4cc62 0%, #e0a635 100%);
}
.btn-review svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ========== Sections ========== */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-lead {
    color: var(--ink-soft);
    font-size: 1.08rem;
    margin: 0.5rem 0 0;
}

/* About */
.section-about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    margin: 0 0 1rem;
}

.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-collage .photo-slot {
    aspect-ratio: 4 / 5;
}

/* ========== Photo placeholders ========== */
.photo-slot {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.55), transparent 55%),
        linear-gradient(135deg, #f5ead6 0%, #e6d4b1 55%, #d4ba85 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow:
        inset 0 0 0 1px rgba(139, 90, 43, 0.12),
        0 6px 22px -10px rgba(74, 47, 22, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3;
}

.photo-slot::before {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: 96px 96px;
    opacity: 0.28;
}

.photo-slot::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(184, 137, 63, 0.04),
        rgba(184, 137, 63, 0.04) 2px,
        transparent 2px,
        transparent 12px
    );
    pointer-events: none;
}

.photo-slot:hover {
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 1px rgba(139, 90, 43, 0.18),
        0 14px 34px -10px rgba(74, 47, 22, 0.35);
}

.photo-label {
    position: relative;
    z-index: 2;
    background: rgba(250, 245, 236, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--brand-dark);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(139, 90, 43, 0.18);
    box-shadow: 0 2px 10px -4px rgba(74, 47, 22, 0.2);
}

/* Stock photo layer (loads on top of placeholder; falls back gracefully) */
.photo-stock {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}
.photo-stock.loaded { opacity: 1; }

.photo-slot:has(.photo-stock.loaded) .photo-label { z-index: 4; }
.photo-slot:has(.photo-stock.loaded)::before,
.photo-slot:has(.photo-stock.loaded)::after { display: none; }

/* Icons via data-icon */
.photo-slot[data-icon="wheat"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><path d='M32 8v50'/><path d='M32 18l-6-4M32 18l6-4M32 26l-7-5M32 26l7-5M32 34l-7-5M32 34l7-5M32 42l-7-5M32 42l7-5M32 50l-6-4M32 50l6-4'/></svg>"); }
.photo-slot[data-icon="bread"]::before     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><ellipse cx='32' cy='36' rx='22' ry='14'/><path d='M22 30l5 10M30 28l5 12M38 30l5 10'/></svg>"); }
.photo-slot[data-icon="oven"]::before      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><rect x='8' y='10' width='48' height='44' rx='3'/><path d='M8 22h48'/><circle cx='32' cy='38' r='10'/><circle cx='14' cy='16' r='1.5'/><circle cx='22' cy='16' r='1.5'/><circle cx='32' cy='38' r='5'/></svg>"); }
.photo-slot[data-icon="koulouri"]::before  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2'><circle cx='32' cy='32' r='20'/><circle cx='32' cy='32' r='9'/><circle cx='22' cy='22' r='1' fill='%238b5a2b'/><circle cx='42' cy='22' r='1' fill='%238b5a2b'/><circle cx='22' cy='42' r='1' fill='%238b5a2b'/><circle cx='42' cy='42' r='1' fill='%238b5a2b'/><circle cx='32' cy='18' r='1' fill='%238b5a2b'/><circle cx='32' cy='46' r='1' fill='%238b5a2b'/><circle cx='18' cy='32' r='1' fill='%238b5a2b'/><circle cx='46' cy='32' r='1' fill='%238b5a2b'/></svg>"); }
.photo-slot[data-icon="pie"]::before       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'><path d='M12 50L32 14l20 36z'/><path d='M22 40h20M28 32h8'/></svg>"); }
.photo-slot[data-icon="croissant"]::before { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><path d='M10 36c0-13 11-24 24-24s22 9 22 22c-2-7-9-12-18-12s-16 5-18 14c-5 0-9 0-10 0z'/><path d='M18 30l6 4M28 26l4 5M38 24l4 5M46 26l3 4'/></svg>"); }
.photo-slot[data-icon="cake"]::before      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><rect x='10' y='30' width='44' height='22' rx='2'/><path d='M10 38h44'/><path d='M28 22v8M32 16v14M36 22v8'/><circle cx='28' cy='20' r='1.5' fill='%238b5a2b'/><circle cx='32' cy='14' r='1.5' fill='%238b5a2b'/><circle cx='36' cy='20' r='1.5' fill='%238b5a2b'/></svg>"); }
.photo-slot[data-icon="tsoureki"]::before  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round'><path d='M14 14c0 8 36 8 36 18s-36 8-36 18'/><path d='M50 14c0 8-36 8-36 18s36 8 36 18'/></svg>"); }
.photo-slot[data-icon="storefront"]::before{ background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linejoin='round' stroke-linecap='round'><path d='M8 24l4-10h40l4 10z'/><path d='M10 24v32h44V24'/><path d='M26 56V36h12v20'/><path d='M16 24v6M24 24v6M32 24v6M40 24v6M48 24v6'/></svg>"); }
.photo-slot[data-icon="coffee"]::before    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none' stroke='%238b5a2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 24h32v18a10 10 0 0 1-10 10H24a10 10 0 0 1-10-10z'/><path d='M46 28h6a6 6 0 0 1 0 12h-6'/><path d='M22 12c-2 4 2 4 0 8M30 12c-2 4 2 4 0 8M38 12c-2 4 2 4 0 8'/></svg>"); }

/* Location feature pills */
.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.5rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream);
    color: var(--brand-dark);
    border: 1px solid var(--line);
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.feature-pill::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* Coffee card sits centered alone on its row */
.product-coffee { grid-column: 2; }

/* Values */
.section-values {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

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

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.2rem;
    color: var(--brand);
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-icon svg { width: 28px; height: 28px; }

.value-card h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.value-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Products */
.section-products { background: #fbf6e9; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

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

.product-photo {
    aspect-ratio: 4 / 3;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
}

.product-card h3 {
    padding: 1.3rem 1.4rem 0.3rem;
    margin: 0;
    font-size: 1.3rem;
    color: var(--brand-dark);
}

.product-card p {
    padding: 0 1.4rem 1.5rem;
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Locations */
.section-locations { background: var(--cream); }

.location-photo {
    aspect-ratio: 16 / 9;
    margin: -2.2rem -2.2rem 1.5rem;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    box-shadow: 0 4px 18px -10px rgba(74, 47, 22, 0.18);
}

.location-tag {
    display: inline-block;
    background: var(--cream-2);
    color: var(--brand-dark);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.location-card h3 {
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
    color: var(--brand-dark);
}

.location-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    display: grid;
    gap: 1rem;
}

.location-info li {
    display: grid;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.info-value { color: var(--ink); font-size: 1.02rem; }

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.4rem;
    font-size: 0.93rem;
}

.hours-table th, .hours-table td {
    text-align: left;
    padding: 0.42rem 0;
    border-bottom: 1px dashed var(--line);
    font-weight: 400;
    color: var(--ink-soft);
}

.hours-table td { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.closed td { color: #b04a3a; font-weight: 500; }

.location-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

/* Contact */
.section-contact {
    background: linear-gradient(180deg, var(--cream-2) 0%, #ead8b8 100%);
    text-align: center;
}

.contact-inner h2 {
    max-width: 22ch;
    margin: 0 auto 0.8rem;
}

.contact-inner p {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 44ch;
    margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--cream);
    padding: 2.5rem 0;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 80px;
    width: auto;
    background: var(--cream);
    border-radius: 50%;
    padding: 6px;
}

.footer-tag p { margin: 0; font-family: var(--font-serif); font-size: 1.2rem; }
.footer-small {
    font-family: var(--font-sans) !important;
    font-size: 0.85rem !important;
    color: rgba(250, 245, 236, 0.6);
    margin-top: 0.4rem !important;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .product-coffee { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
    .locations-grid { grid-template-columns: 1fr; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    .hero-text { padding: 0; }
    .hero-text::before { left: 50%; transform: translateX(-50%); }
    .hero-cta { justify-content: center; }
}

@media (max-width: 700px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .main-nav.open { max-height: 320px; }
    .main-nav a {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--line);
        width: 100%;
        text-align: center;
    }
    .main-nav a::after { display: none; }

    .menu-toggle { display: flex; }
    .brand-logo { height: 70px; }
    .brand-wordmark { display: none; }
    .values-grid { grid-template-columns: 1fr; }
    .products-grid { gap: 0.8rem; }
    .product-coffee { grid-column: 1 / -1; max-width: 320px; }
    .product-card h3 { font-size: 1.05rem; padding: 0.9rem 0.9rem 0.2rem; }
    .product-card p { font-size: 0.85rem; padding: 0 0.9rem 1rem; line-height: 1.5; }
    .footer-grid { flex-direction: column; text-align: center; }
}
