@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Work+Sans:wght@400;500;600;700&display=swap');

body.page-kitchen-overview,
body.page-kitchen-library,
body.page-kitchen-history,
body.page-kitchen-experience {
    --tp-color-amber: #b07a2a;
    --tp-color-amber-dark: #6e4b11;
    --tp-color-cream: #f6efe3;
    --tp-color-teal: #1f4e4a;
    --tp-color-teal-dark: #143732;
    --tp-color-wine: #723531;

    margin: 0;
    background: #f5efe2 url('assets/img/bck_1_light.webp') center/cover no-repeat fixed;
    font-family: 'Work Sans', 'Nunito', 'Segoe UI', sans-serif;
    color: #0f172a;
    line-height: 1.65;
}

body[class^="page-kitchen"] *,
body[class^="page-kitchen"] *::before,
body[class^="page-kitchen"] *::after {
    box-sizing: border-box;
}

body.page-kitchen-overview,
body.page-kitchen-library,
body.page-kitchen-history {
    background-color: #f5efe2;
}

body.page-kitchen-experience {
    background-color: #f7f5f0;
}

body[class^="page-kitchen"] .site-header {
    position: relative;
    background: linear-gradient(135deg, rgba(16, 59, 57, 0.96), rgba(41, 74, 52, 0.92));
    border-bottom: 1px solid rgba(253, 243, 224, 0.22);
    box-shadow: 0 28px 68px -48px rgba(12, 34, 32, 0.55);
    color: #fdf6e9;
}

body[class^="page-kitchen"] .site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 38px;
    background: url('assets/img/beteala.webp') top center/auto 90px repeat-x;
    opacity: 0.18;
    pointer-events: none;
}

body[class^="page-kitchen"] .site-header__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1.75rem clamp(1.75rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 5vw, 3rem);
}

body[class^="page-kitchen"] .site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

body[class^="page-kitchen"] .site-logo {
    display: block;
    width: clamp(44px, 6vw, 56px);
    height: auto;
}

body[class^="page-kitchen"] .site-brand__text {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fdf6e9;
}

body[class^="page-kitchen"] .site-nav {
    display: inline-flex;
    align-items: center;
}

body[class^="page-kitchen"] .site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: clamp(1.25rem, 4vw, 2.75rem);
}

body[class^="page-kitchen"] .site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253, 246, 233, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

body[class^="page-kitchen"] .site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(253, 243, 224, 0.85);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

body[class^="page-kitchen"] .site-nav__link:hover,
body[class^="page-kitchen"] .site-nav__link:focus-visible {
    color: #fff7ea;
}

body[class^="page-kitchen"] .site-nav__link:hover::after,
body[class^="page-kitchen"] .site-nav__link:focus-visible::after {
    transform: scaleX(1);
}

body[class^="page-kitchen"] .site-main {
    max-width: 1160px;
    margin: clamp(3rem, 8vw, 5rem) auto clamp(4rem, 10vw, 6.5rem);
    padding: 0 clamp(1.75rem, 5vw, 4rem);
}

body[class^="page-kitchen"] .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.75rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

body[class^="page-kitchen"] .btn-primary {
    background: linear-gradient(135deg, #3468d9, #2355bf);
    color: #ffffff;
    box-shadow: 0 16px 40px -26px rgba(35, 85, 191, 0.65);
}

body[class^="page-kitchen"] .btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #3f73e4, #2c60ca);
}

body[class^="page-kitchen"] .btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--tp-color-teal);
    border-color: rgba(31, 78, 74, 0.25);
    box-shadow: 0 10px 28px -22px rgba(31, 78, 74, 0.35);
}

body[class^="page-kitchen"] .btn-secondary:hover {
    transform: translateY(-2px);
}

body[class^="page-kitchen"] .btn-tertiary {
    background: rgba(31, 78, 74, 0.1);
    color: var(--tp-color-teal);
    border-color: transparent;
}

body[class^="page-kitchen"] .btn-tertiary:hover {
    transform: translateY(-1px);
    background: rgba(31, 78, 74, 0.15);
}

body[class^="page-kitchen"] .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body[class^="page-kitchen"] .site-footer {
    margin-top: clamp(4rem, 8vw, 7rem);
    background: linear-gradient(135deg, rgba(26, 47, 43, 0.95), rgba(54, 34, 22, 0.88));
    color: #fdf6e9;
    border-top: 1px solid rgba(253, 243, 224, 0.18);
    position: relative;
    overflow: hidden;
}

body[class^="page-kitchen"] .site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/img/beteala.webp') top center/auto 120px repeat-x;
    opacity: 0.12;
    pointer-events: none;
}

body[class^="page-kitchen"] .site-footer__inner {
    position: relative;
    width: min(1160px, 92vw);
    margin: 0 auto;
    padding: clamp(2.8rem, 6vw, 4rem) 0 clamp(2.2rem, 5vw, 3.4rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

body[class^="page-kitchen"] .site-footer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.4rem);
    flex-wrap: wrap;
}

body[class^="page-kitchen"] .site-footer__nav a {
    color: rgba(253, 246, 233, 0.78);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

body[class^="page-kitchen"] .site-footer__nav a:hover,
body[class^="page-kitchen"] .site-footer__nav a:focus-visible {
    color: #fff7ea;
}

body[class^="page-kitchen"] .site-footer__note {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(253, 246, 233, 0.55);
}

@media (max-width: 720px) {
    body[class^="page-kitchen"] .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    body[class^="page-kitchen"] .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    body[class^="page-kitchen"] .site-nav__list {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
