/*
Theme Name: Pickles and Cheese Productions
Theme URI: https://www.picklesandcheeseproductions.com
Author: Pickles and Cheese Productions
Author URI: https://www.picklesandcheeseproductions.com
Description: A custom WordPress theme for Pickles and Cheese Productions — a theater and live performance company. Single-scroll editorial design with deep pickle-greens, warm cheese-gold accents, and a Playfair Display / Inter typography pairing. Includes Home, About, Services, Portfolio, Testimonials, and Contact sections out of the box.
Version: 1.0.1
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pickles-and-cheese
Tags: one-column, custom-colors, custom-menu, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* =========================================================
   Pickles and Cheese Productions — main stylesheet
   --------------------------------------------------------
   Sections:
   1. CSS variables (palette, type, spacing)
   2. Reset & base
   3. Typography
   4. Layout primitives
   5. Navigation
   6. Hero
   7. Section headers
   8. About
   9. Services
   10. Portfolio
   11. Testimonials
   12. Contact
   13. Footer
   14. Forms
   15. Utilities & responsive
   ========================================================= */

/* 1. Variables ------------------------------------------- */
:root {
    --pc-green-deep: #1F3A20;
    --pc-green: #2F5530;
    --pc-green-mid: #487048;
    --pc-green-soft: #6B8E5A;
    --pc-cheese: #E8B940;
    --pc-cheese-light: #F2D27A;
    --pc-cream: #FAF6E9;
    --pc-cream-warm: #F2EAD3;
    --pc-charcoal: #1A2A1A;
    --pc-muted: #6B7A60;
    --pc-line: rgba(31, 58, 32, 0.15);
    --pc-shadow: 0 20px 50px rgba(31, 58, 32, 0.12);
    --pc-shadow-lg: 0 30px 80px rgba(31, 58, 32, 0.18);

    --pc-font-serif: 'Playfair Display', 'Georgia', serif;
    --pc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --pc-container: 1280px;
    --pc-container-narrow: 920px;
    --pc-section-y: clamp(80px, 10vw, 140px);
    --pc-radius: 4px;
    --pc-radius-lg: 12px;
    --pc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Reset & base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--pc-font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--pc-charcoal);
    background: var(--pc-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--pc-green);
    text-decoration: none;
    transition: color 0.2s var(--pc-ease);
}
a:hover { color: var(--pc-cheese); }

button { font: inherit; cursor: pointer; }

/* 3. Typography ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--pc-font-serif);
    font-weight: 500;
    color: var(--pc-green-deep);
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.1; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.15rem; line-height: 1.3; }

p { margin: 0 0 1.2em; }

.eyebrow {
    font-family: var(--pc-font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--pc-cheese);
    margin: 0 0 1.2rem;
    display: inline-block;
}

.lead { font-size: 1.15rem; color: var(--pc-muted); }

/* 4. Layout primitives ---------------------------------- */
.pc-container {
    width: 100%;
    max-width: var(--pc-container);
    margin: 0 auto;
    padding: 0 28px;
}
.pc-container--narrow { max-width: var(--pc-container-narrow); }

.pc-section {
    padding: var(--pc-section-y) 0;
    position: relative;
}
.pc-section--cream { background: var(--pc-cream); }
.pc-section--warm { background: var(--pc-cream-warm); }
.pc-section--green {
    background: var(--pc-green-deep);
    color: var(--pc-cream);
}
.pc-section--green h1,
.pc-section--green h2,
.pc-section--green h3 { color: var(--pc-cream); }

/* 5. Navigation ----------------------------------------- */
.pc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 22px 0;
    transition: background 0.4s var(--pc-ease), padding 0.4s var(--pc-ease), box-shadow 0.4s var(--pc-ease);
}
.pc-nav.is-scrolled {
    background: rgba(31, 58, 32, 0.97);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
}
.pc-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.pc-nav__brand {
    color: var(--pc-cream);
    font-family: var(--pc-font-serif);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.01em;
    display: flex;
    flex-direction: column;
}
.pc-nav__brand-sub {
    font-family: var(--pc-font-sans);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--pc-cheese);
    font-weight: 600;
}
.pc-nav__brand:hover { color: var(--pc-cheese-light); }

.pc-nav__menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pc-nav__menu a {
    color: var(--pc-cream);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    padding: 6px 2px;
    position: relative;
}
.pc-nav__menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--pc-cheese);
    transition: width 0.3s var(--pc-ease);
}
.pc-nav__menu a:hover { color: var(--pc-cheese); }
.pc-nav__menu a:hover::after { width: 100%; }

.pc-nav__toggle {
    display: none;
    width: 36px; height: 36px;
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--pc-cream);
}
.pc-nav__toggle span {
    display: block;
    width: 24px; height: 2px;
    background: currentColor;
    margin: 5px auto;
    transition: transform 0.3s var(--pc-ease), opacity 0.3s var(--pc-ease);
}

/* 6. Hero ------------------------------------------------ */
.pc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pc-cream);
    overflow: hidden;
    text-align: center;
    padding: 120px 0 80px;
}
.pc-hero__bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(31, 58, 32, 0.85) 0%, rgba(31, 58, 32, 0.65) 60%, rgba(26, 42, 26, 0.95) 100%),
        radial-gradient(at 30% 30%, var(--pc-green-mid) 0%, transparent 60%),
        radial-gradient(at 80% 70%, var(--pc-green-soft) 0%, transparent 50%),
        var(--pc-green-deep);
    z-index: 0;
}
.pc-hero__dots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.85;
}
.pc-hero__inner { position: relative; z-index: 2; max-width: 880px; padding: 0 28px; }
.pc-hero__eyebrow {
    color: var(--pc-cheese);
    font-size: 0.85rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 28px;
    display: inline-block;
}
.pc-hero__title {
    color: var(--pc-cream);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.02;
    margin: 0 0 28px;
    font-weight: 500;
}
.pc-hero__title em {
    font-style: italic;
    color: var(--pc-cheese-light);
}
.pc-hero__sub {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    max-width: 580px;
    margin: 0 auto 48px;
    color: rgba(250, 246, 233, 0.85);
    line-height: 1.65;
}
.pc-hero__scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    color: var(--pc-cream);
    z-index: 2;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.8;
    text-align: center;
}
.pc-hero__scroll::after {
    content: '';
    display: block;
    width: 1px; height: 40px;
    background: currentColor;
    margin: 12px auto 0;
    animation: pc-scroll-pulse 2s var(--pc-ease) infinite;
    transform-origin: top;
}
@keyframes pc-scroll-pulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.4); opacity: 1; }
}

/* Buttons ------------------------------------------------ */
.pc-btn {
    display: inline-block;
    padding: 16px 38px;
    font-family: var(--pc-font-sans);
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--pc-cheese);
    background: var(--pc-cheese);
    color: var(--pc-green-deep);
    border-radius: var(--pc-radius);
    transition: all 0.3s var(--pc-ease);
    cursor: pointer;
}
.pc-btn:hover {
    background: transparent;
    color: var(--pc-cheese-light);
    border-color: var(--pc-cheese-light);
}
.pc-btn--ghost {
    background: transparent;
    color: var(--pc-cream);
    border-color: var(--pc-cream);
}
.pc-btn--ghost:hover {
    background: var(--pc-cream);
    color: var(--pc-green-deep);
}
.pc-btn--solid-green {
    background: var(--pc-green-deep);
    border-color: var(--pc-green-deep);
    color: var(--pc-cream);
}
.pc-btn--solid-green:hover {
    background: var(--pc-cheese);
    border-color: var(--pc-cheese);
    color: var(--pc-green-deep);
}

/* 7. Section headers ------------------------------------ */
.pc-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}
.pc-section-head--left { text-align: left; margin-left: 0; }
.pc-section-head h2 { margin-bottom: 18px; }
.pc-section-head .lead { margin: 0; }

/* Decorative divider */
.pc-divider {
    display: block;
    width: 56px; height: 1px;
    background: var(--pc-cheese);
    margin: 0 auto 32px;
}
.pc-section-head--left .pc-divider { margin-left: 0; }

/* 8. About ---------------------------------------------- */
.pc-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.pc-about__media {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--pc-green-mid), var(--pc-green-deep));
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    box-shadow: var(--pc-shadow-lg);
}
.pc-about__media::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 30% 20%, rgba(232, 185, 64, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 70% 75%, rgba(107, 142, 90, 0.4) 0%, transparent 50%);
}
.pc-about__media-label {
    position: absolute;
    bottom: 24px; left: 24px;
    color: var(--pc-cheese-light);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}
.pc-about__media img,
.pc-about__media video {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute; inset: 0;
}

/* 9. Services -------------------------------------------- */
.pc-services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.pc-service {
    padding: 48px 36px;
    background: var(--pc-cream);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius-lg);
    transition: transform 0.4s var(--pc-ease), box-shadow 0.4s var(--pc-ease), border-color 0.4s var(--pc-ease);
}
.pc-service:hover {
    transform: translateY(-6px);
    box-shadow: var(--pc-shadow);
    border-color: var(--pc-cheese);
}
.pc-service__icon {
    width: 56px; height: 56px;
    color: var(--pc-cheese);
    margin-bottom: 28px;
}
.pc-service__icon svg { width: 100%; height: 100%; }
.pc-service h3 { margin-bottom: 14px; }
.pc-service p { color: var(--pc-muted); margin-bottom: 0; font-size: 0.97rem; }

/* 10. Portfolio ----------------------------------------- */
.pc-portfolio__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.pc-portfolio__item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--pc-radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: var(--pc-green-deep);
}
.pc-portfolio__item:nth-child(3n+1) { background: linear-gradient(160deg, var(--pc-green), var(--pc-green-deep)); }
.pc-portfolio__item:nth-child(3n+2) { background: linear-gradient(160deg, var(--pc-green-mid), var(--pc-green)); }
.pc-portfolio__item:nth-child(3n+3) { background: linear-gradient(160deg, var(--pc-green-deep), var(--pc-green-mid)); }
.pc-portfolio__item img,
.pc-portfolio__item video {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--pc-ease), opacity 0.4s var(--pc-ease);
}
.pc-portfolio__item:hover img,
.pc-portfolio__item:hover video {
    transform: scale(1.06);
}
.pc-portfolio__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(31, 58, 32, 0.85) 100%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--pc-cream);
    transition: background 0.4s var(--pc-ease);
}
.pc-portfolio__item:hover .pc-portfolio__overlay {
    background: linear-gradient(180deg, rgba(31, 58, 32, 0.3) 0%, rgba(31, 58, 32, 0.95) 100%);
}
.pc-portfolio__overlay-cat {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pc-cheese);
    margin-bottom: 10px;
}
.pc-portfolio__overlay h4 {
    color: var(--pc-cream);
    font-size: 1.4rem;
    margin: 0;
    font-family: var(--pc-font-serif);
}

/* 11. Testimonials -------------------------------------- */
.pc-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pc-testimonial {
    padding: 44px 36px;
    background: rgba(250, 246, 233, 0.04);
    border: 1px solid rgba(250, 246, 233, 0.12);
    border-radius: var(--pc-radius-lg);
    position: relative;
}
.pc-testimonial::before {
    content: '\201C';
    font-family: var(--pc-font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--pc-cheese);
    position: absolute;
    top: 14px; left: 28px;
    opacity: 0.5;
}
.pc-testimonial__quote {
    font-family: var(--pc-font-serif);
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--pc-cream);
    font-style: italic;
    margin: 24px 0 28px;
    position: relative;
    z-index: 2;
}
.pc-testimonial__attr {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pc-cheese);
}
.pc-testimonial__role {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: none;
    font-weight: 400;
    color: rgba(250, 246, 233, 0.6);
    margin-top: 6px;
    font-style: italic;
}

/* 12. Contact ------------------------------------------- */
.pc-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}
.pc-contact__info p { color: var(--pc-muted); }
.pc-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 32px;
}
.pc-contact__detail-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    color: var(--pc-cheese);
    margin-top: 2px;
}
.pc-contact__detail-icon svg { width: 100%; height: 100%; }
.pc-contact__detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pc-green-soft);
    margin: 0 0 4px;
}
.pc-contact__detail-value {
    font-family: var(--pc-font-serif);
    font-size: 1.15rem;
    color: var(--pc-green-deep);
    margin: 0;
}
.pc-contact__detail-value a { color: inherit; }
.pc-contact__detail-value a:hover { color: var(--pc-cheese); }

/* 13. Footer -------------------------------------------- */
.pc-footer {
    background: var(--pc-green-deep);
    color: rgba(250, 246, 233, 0.7);
    padding: 64px 0 40px;
    text-align: center;
}
.pc-footer__brand {
    font-family: var(--pc-font-serif);
    color: var(--pc-cream);
    font-size: 1.6rem;
    margin-bottom: 6px;
}
.pc-footer__brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--pc-cheese);
    margin-bottom: 32px;
    display: block;
}
.pc-footer__social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}
.pc-footer__social a {
    color: var(--pc-cream);
    width: 22px;
    height: 22px;
    display: block;
}
.pc-footer__social a:hover { color: var(--pc-cheese); }
.pc-footer__social svg { width: 100%; height: 100%; }
.pc-footer__line {
    height: 1px;
    background: rgba(250, 246, 233, 0.12);
    max-width: 200px;
    margin: 0 auto 28px;
}
.pc-footer__copy {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    margin: 0;
}

/* 14. Forms --------------------------------------------- */
.pc-form { display: grid; gap: 22px; }
.pc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.pc-form__field { display: flex; flex-direction: column; }
.pc-form__field label {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--pc-green);
    margin-bottom: 10px;
}
.pc-form__field input,
.pc-form__field textarea,
.pc-form__field select {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    color: var(--pc-charcoal);
    background: var(--pc-cream);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius);
    transition: border-color 0.2s var(--pc-ease), box-shadow 0.2s var(--pc-ease);
}
.pc-form__field input:focus,
.pc-form__field textarea:focus,
.pc-form__field select:focus {
    outline: 0;
    border-color: var(--pc-green);
    box-shadow: 0 0 0 3px rgba(47, 85, 48, 0.12);
}
.pc-form__field textarea { resize: vertical; min-height: 140px; }
.pc-form__notice {
    padding: 14px 18px;
    border-radius: var(--pc-radius);
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.pc-form__notice--ok {
    background: rgba(72, 112, 72, 0.12);
    border-left: 3px solid var(--pc-green);
    color: var(--pc-green-deep);
}
.pc-form__notice--err {
    background: rgba(180, 60, 60, 0.08);
    border-left: 3px solid #b43c3c;
    color: #7a2828;
}

/* 15. Utilities & responsive ---------------------------- */
.pc-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--pc-ease), transform 0.9s var(--pc-ease);
}
.pc-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Generic page layout (for non-front-page WP pages) */
.pc-page {
    padding: 180px 0 var(--pc-section-y);
}
.pc-page__content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 28px;
}

/* WP block / editor compatibility */
.alignwide { margin-left: -60px; margin-right: -60px; }
.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
}
.wp-caption { margin-bottom: 1.6em; }
.wp-block-image figcaption {
    color: var(--pc-muted);
    font-size: 0.85rem;
    text-align: center;
}

/* 16. Dropdown navigation (sub-tabs) ------------------- */
.pc-nav__menu .menu-item-has-children,
.pc-nav__menu .pc-has-sub {
    position: relative;
}
.pc-nav__menu .menu-item-has-children > a::before,
.pc-nav__menu .pc-has-sub > a::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    margin-right: 10px;
    margin-bottom: 2px;
    transition: transform 0.3s var(--pc-ease);
    opacity: 0.7;
    vertical-align: middle;
}
.pc-nav__menu .sub-menu,
.pc-nav__menu .pc-sub-menu {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    position: absolute;
    top: calc(100% + 16px);
    left: -20px;
    min-width: 240px;
    background: var(--pc-cream);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.3s var(--pc-ease), transform 0.3s var(--pc-ease), visibility 0s 0.3s;
    z-index: 50;
}
.pc-nav__menu .sub-menu::before,
.pc-nav__menu .pc-sub-menu::before {
    content: '';
    position: absolute;
    top: -8px; left: 32px;
    width: 14px; height: 14px;
    background: var(--pc-cream);
    transform: rotate(45deg);
    border-radius: 2px;
}
.pc-nav__menu .menu-item-has-children:hover > .sub-menu,
.pc-nav__menu .pc-has-sub:hover > .pc-sub-menu,
.pc-nav__menu .menu-item-has-children:focus-within > .sub-menu,
.pc-nav__menu .pc-has-sub:focus-within > .pc-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s var(--pc-ease), transform 0.3s var(--pc-ease), visibility 0s;
}
.pc-nav__menu .sub-menu li,
.pc-nav__menu .pc-sub-menu li {
    list-style: none;
}
.pc-nav__menu .sub-menu a,
.pc-nav__menu .pc-sub-menu a {
    display: block;
    padding: 10px 24px;
    color: var(--pc-green-deep) !important;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.pc-nav__menu .sub-menu a::after,
.pc-nav__menu .pc-sub-menu a::after { display: none; }
.pc-nav__menu .sub-menu a:hover,
.pc-nav__menu .pc-sub-menu a:hover {
    color: var(--pc-cheese) !important;
    background: rgba(232, 185, 64, 0.08);
}

/* 17. Pickle-themed playful flourishes ------------------ */
.pc-pickle-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 32px;
    color: var(--pc-cheese);
}
.pc-pickle-divider::before,
.pc-pickle-divider::after {
    content: '';
    width: 56px; height: 1px;
    background: currentColor;
    opacity: 0.6;
}
.pc-pickle-divider svg { width: 28px; height: 28px; }
.pc-section-head--left .pc-pickle-divider { justify-content: flex-start; margin-left: 0; }
.pc-section-head--left .pc-pickle-divider::before { display: none; }

.pc-pickle-bg {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    color: var(--pc-green-deep);
}
.pc-section--green .pc-pickle-bg { color: var(--pc-cheese); opacity: 0.08; }
.pc-pickle-bg svg { width: 100%; height: 100%; }
.pc-pickle-bg--top-right { top: 40px; right: -60px; width: 280px; }
.pc-pickle-bg--bottom-left { bottom: -40px; left: -80px; width: 320px; transform: rotate(-15deg); }

.pc-section > .pc-container { position: relative; z-index: 2; }

/* Service "flavor tag" badge */
.pc-flavor-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(232, 185, 64, 0.18);
    color: var(--pc-green-deep);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 14px;
}
.pc-flavor-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--pc-cheese);
    border-radius: 50%;
}

/* Sub-page hero (smaller than home hero) */
.pc-subhero {
    position: relative;
    padding: 200px 0 90px;
    text-align: center;
    color: var(--pc-cream);
    background:
        linear-gradient(135deg, rgba(31, 58, 32, 0.92) 0%, rgba(47, 85, 48, 0.85) 100%),
        radial-gradient(at 20% 20%, var(--pc-green-mid) 0%, transparent 50%),
        var(--pc-green-deep);
    overflow: hidden;
}
.pc-subhero h1 { color: var(--pc-cream); margin: 0 0 16px; }
.pc-subhero p { color: rgba(250, 246, 233, 0.85); max-width: 600px; margin: 0 auto; }

/* Sub-services / sub-categories grid for landing pages */
.pc-subgrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.pc-subcard {
    display: block;
    padding: 36px 32px;
    background: var(--pc-cream);
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-radius-lg);
    color: inherit;
    transition: transform 0.4s var(--pc-ease), box-shadow 0.4s var(--pc-ease), border-color 0.3s var(--pc-ease);
    position: relative;
    overflow: hidden;
}
.pc-subcard::after {
    content: '\2192';
    position: absolute;
    bottom: 28px; right: 32px;
    font-size: 1.5rem;
    color: var(--pc-cheese);
    transition: transform 0.3s var(--pc-ease);
    opacity: 0;
}
.pc-subcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow);
    border-color: var(--pc-cheese);
}
.pc-subcard:hover::after {
    opacity: 1;
    transform: translateX(4px);
}
.pc-subcard h3 {
    font-size: 1.4rem;
    margin: 14px 0 12px;
}
.pc-subcard p { color: var(--pc-muted); margin: 0; font-size: 0.95rem; }
.pc-subcard__icon {
    width: 44px; height: 44px;
    color: var(--pc-cheese);
}
.pc-subcard__icon svg { width: 100%; height: 100%; }

/* Responsive breakpoints */
@media (max-width: 980px) {
    .pc-about__grid { grid-template-columns: 1fr; gap: 48px; }
    .pc-portfolio__grid { grid-template-columns: repeat(2, 1fr); }
    .pc-testimonials__grid { grid-template-columns: 1fr; }
    .pc-contact__grid { grid-template-columns: 1fr; gap: 48px; }
    .pc-services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .pc-nav__menu {
        position: fixed;
        top: 0; right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--pc-green-deep);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.4s var(--pc-ease);
    }
    .pc-nav__menu.is-open { right: 0; }
    .pc-nav__toggle { display: block; position: relative; z-index: 110; }
    .pc-nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .pc-nav__toggle.is-open span:nth-child(2) { opacity: 0; }
    .pc-nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .pc-portfolio__grid { grid-template-columns: 1fr; }
    .pc-form__row { grid-template-columns: 1fr; }

    .pc-nav__menu .sub-menu,
    .pc-nav__menu .pc-sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 8px 0 0 16px;
        min-width: 0;
        margin-top: 8px;
        border-left: 1px solid rgba(232, 185, 64, 0.3);
    }
    .pc-nav__menu .sub-menu::before,
    .pc-nav__menu .pc-sub-menu::before { display: none; }
    .pc-nav__menu .sub-menu a,
    .pc-nav__menu .pc-sub-menu a {
        color: var(--pc-cheese-light) !important;
        padding: 8px 0;
    }
    .pc-nav__menu .sub-menu a:hover,
    .pc-nav__menu .pc-sub-menu a:hover {
        background: transparent;
        color: var(--pc-cheese) !important;
    }
}
