/* ============================================================
   SWORD TO PLOW — Luxury Farm CSS
   Isaiah 2:4 · Luxury Vegetable Production · Farm Experiences
   ============================================================ */

:root {
    --stp-green:      #1E3A2F;
    --stp-green-mid:  #2E5443;
    --stp-gold:       #C4995A;
    --stp-gold-light: #D4AF78;
    --stp-cream:      #F7F3EC;
    --stp-parchment:  #EDE5D8;
    --stp-charcoal:   #1A1A1A;
    --stp-sage:       #8B9E7E;
    --stp-text:       #2D2D2D;
    --font-heading:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'Montserrat', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.stp-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--stp-text);
    background: var(--stp-cream);
    -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */

.stp-body h1, .stp-body h2, .stp-body h3,
.stp-body h4, .stp-body h5, .stp-body h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.stp-eyebrow {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stp-gold);
    display: block;
    margin-bottom: 1rem;
}

.stp-rule {
    width: 48px;
    height: 1px;
    background: var(--stp-gold);
    border: none;
    margin: 1.5rem 0;
}

.stp-rule--center {
    margin-left: auto;
    margin-right: auto;
}

/* ── NAVIGATION ─────────────────────────────────────────── */

.stp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s ease, padding 0.4s ease;
}

.stp-nav.scrolled {
    background: rgba(26, 26, 26, 0.96);
    padding: 1rem 3rem;
    backdrop-filter: blur(8px);
}

.stp-nav__brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.stp-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2.5rem;
}

.stp-nav__links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.25s;
}

.stp-nav__links a:hover { color: var(--stp-gold-light); }

.stp-nav__cta {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stp-charcoal) !important;
    background: var(--stp-gold);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}

.stp-nav__cta:hover {
    background: var(--stp-gold-light);
    color: var(--stp-charcoal) !important;
}

.stp-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.stp-nav__toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: transform 0.3s;
}

/* ── HERO ───────────────────────────────────────────────── */

.stp-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        160deg,
        #0d2218 0%,
        #1E3A2F 40%,
        #2a4a30 70%,
        #1a3028 100%
    );
}

.stp-hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(196,153,90,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(139,158,126,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative grain overlay for depth */
.stp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.stp-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 820px;
}

.stp-hero__pre {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stp-gold);
    display: block;
    margin-bottom: 1.5rem;
}

.stp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--stp-cream);
    margin: 0 0 0.2em;
    text-transform: uppercase;
}

.stp-hero__title em {
    font-style: italic;
    font-weight: 300;
    color: var(--stp-gold-light);
}

.stp-hero__divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--stp-gold), transparent);
    margin: 1.5rem auto;
}

.stp-hero__scripture {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(247,243,236,0.75);
    max-width: 560px;
    margin: 0 auto 0.5rem;
}

.stp-hero__ref {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stp-gold);
    display: block;
    margin-top: 0.75rem;
}

.stp-hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.stp-hero__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── INTRO / MANIFESTO ──────────────────────────────────── */

.stp-manifesto {
    padding: 8rem 2rem;
    background: var(--stp-cream);
    text-align: center;
}

.stp-manifesto__inner {
    max-width: 680px;
    margin: 0 auto;
}

.stp-manifesto h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.25;
    color: var(--stp-green);
    margin: 0 0 1.5rem;
}

.stp-manifesto p {
    font-size: 1rem;
    line-height: 1.9;
    color: #5a5a4e;
    font-weight: 300;
}

/* ── SPLIT FEATURE ──────────────────────────────────────── */

.stp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.stp-split--reverse { direction: rtl; }
.stp-split--reverse > * { direction: ltr; }

.stp-split__image {
    background-color: var(--stp-green-mid);
    background-size: cover;
    background-position: center;
    min-height: 420px;
}

.stp-split__image--produce {
    background: linear-gradient(135deg, #1a3828 0%, #2d5a3d 40%, #3a7048 100%);
    position: relative;
    overflow: hidden;
}

.stp-split__image--produce::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(196,153,90,0.15), transparent 65%);
}

.stp-split__image--experience {
    background: linear-gradient(135deg, #2a1f14 0%, #4a3422 50%, #3d2c1a 100%);
}

.stp-split__content {
    background: var(--stp-parchment);
    display: flex;
    align-items: center;
    padding: 5rem 5rem 5rem 5.5rem;
}

.stp-split--reverse .stp-split__content {
    padding: 5rem 5.5rem 5rem 5rem;
}

.stp-split__content--dark {
    background: var(--stp-green);
    color: var(--stp-cream);
}

.stp-split__content--dark .stp-eyebrow { color: var(--stp-gold); }

.stp-split__content--dark h2 { color: var(--stp-cream); }

.stp-split__content--dark p { color: rgba(247,243,236,0.72); }

.stp-split__content--dark .stp-rule { background: var(--stp-gold); }

.stp-split__text { max-width: 440px; }

.stp-split__text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    color: var(--stp-green);
    margin: 0 0 1rem;
}

.stp-split__text p {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #5a5a4e;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.stp-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2.2rem;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.stp-btn--gold {
    background: var(--stp-gold);
    color: var(--stp-charcoal);
    border: 1px solid var(--stp-gold);
}

.stp-btn--gold:hover {
    background: var(--stp-gold-light);
    border-color: var(--stp-gold-light);
    color: var(--stp-charcoal);
    text-decoration: none;
}

.stp-btn--outline-cream {
    background: transparent;
    color: var(--stp-cream);
    border: 1px solid rgba(247,243,236,0.45);
}

.stp-btn--outline-cream:hover {
    background: rgba(247,243,236,0.1);
    border-color: var(--stp-cream);
    color: var(--stp-cream);
    text-decoration: none;
}

/* ── PRODUCE GRID ───────────────────────────────────────── */

.stp-produce {
    padding: 7rem 2rem;
    background: var(--stp-cream);
}

.stp-produce__header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 4rem;
}

.stp-produce__header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--stp-green);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.stp-produce__header p {
    font-size: 0.95rem;
    color: #5a5a4e;
    line-height: 1.8;
    font-weight: 300;
}

.stp-produce__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    max-width: 1100px;
    margin: 0 auto;
}

.stp-produce__item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--stp-green-mid);
    cursor: default;
}

.stp-produce__item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, transparent 50%);
    transition: background 0.4s;
}

.stp-produce__item:hover::before {
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(30,58,47,0.3) 100%);
}

.stp-produce__item-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.stp-produce__item:hover .stp-produce__item-bg {
    transform: scale(1.04);
}

/* Individual vegetable color swatches (replace with photos) */
.stp-produce__item:nth-child(1) .stp-produce__item-bg {
    background: linear-gradient(135deg, #1f4030 0%, #2d6040 60%, #1a3828 100%);
}
.stp-produce__item:nth-child(2) .stp-produce__item-bg {
    background: linear-gradient(135deg, #3d2a1a 0%, #6b4226 60%, #4a3020 100%);
}
.stp-produce__item:nth-child(3) .stp-produce__item-bg {
    background: linear-gradient(135deg, #2a3820 0%, #4a6030 60%, #354825 100%);
}
.stp-produce__item:nth-child(4) .stp-produce__item-bg {
    background: linear-gradient(135deg, #3a2840 0%, #5a3a60 60%, #2e2035 100%);
}
.stp-produce__item:nth-child(5) .stp-produce__item-bg {
    background: linear-gradient(135deg, #1a3818 0%, #2e5a28 60%, #1e4020 100%);
}
.stp-produce__item:nth-child(6) .stp-produce__item-bg {
    background: linear-gradient(135deg, #3a2010 0%, #6a3818 60%, #4a2a14 100%);
}

.stp-produce__item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.5rem 1.75rem;
}

.stp-produce__item-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--stp-cream);
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stp-produce__item-variety {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stp-gold-light);
}

/* ── EXPERIENCE SECTION ─────────────────────────────────── */

.stp-experience {
    background: var(--stp-green);
    padding: 7rem 2rem;
    text-align: center;
}

.stp-experience__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.stp-experience__header {
    max-width: 580px;
    margin: 0 auto 4rem;
}

.stp-experience__header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--stp-cream);
    margin: 0 0 1rem;
}

.stp-experience__header p {
    font-size: 0.95rem;
    color: rgba(247,243,236,0.65);
    line-height: 1.8;
    font-weight: 300;
}

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

.stp-experience__card {
    background: rgba(247,243,236,0.05);
    border: 1px solid rgba(247,243,236,0.1);
    padding: 3rem 2.5rem;
    text-align: left;
    transition: background 0.3s, border-color 0.3s;
}

.stp-experience__card:hover {
    background: rgba(247,243,236,0.09);
    border-color: rgba(196,153,90,0.35);
}

.stp-experience__card-icon {
    font-size: 1.6rem;
    color: var(--stp-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.stp-experience__card h3 {
    font-size: 1.5rem;
    color: var(--stp-cream);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.stp-experience__card p {
    font-size: 0.9rem;
    color: rgba(247,243,236,0.6);
    line-height: 1.85;
    font-weight: 300;
    margin: 0 0 1.5rem;
}

.stp-experience__card-price {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stp-gold);
    border-top: 1px solid rgba(196,153,90,0.25);
    padding-top: 1rem;
    display: block;
}

/* ── QUOTE BREAK ────────────────────────────────────────── */

.stp-quote-break {
    background: var(--stp-parchment);
    padding: 6rem 2rem;
    text-align: center;
}

.stp-quote-break blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.5;
    color: var(--stp-green);
    max-width: 760px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    padding: 0 2rem;
}

.stp-quote-break blockquote::before,
.stp-quote-break blockquote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--stp-gold);
    margin: 1.5rem auto;
}

.stp-quote-break cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stp-gold);
    display: block;
    margin-top: 0.25rem;
}

/* ── VISIT / CTA ────────────────────────────────────────── */

.stp-visit {
    background: var(--stp-charcoal);
    padding: 8rem 2rem;
    text-align: center;
}

.stp-visit__inner { max-width: 640px; margin: 0 auto; }

.stp-visit h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: var(--stp-cream);
    margin: 0 0 1.25rem;
    line-height: 1.15;
}

.stp-visit p {
    font-size: 0.95rem;
    color: rgba(247,243,236,0.6);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.stp-visit .stp-eyebrow { color: var(--stp-gold); }

.stp-visit__detail {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(247,243,236,0.35);
    margin-top: 1.5rem;
    font-weight: 300;
}

/* ── FOOTER ─────────────────────────────────────────────── */

.stp-footer {
    background: #111;
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(196,153,90,0.15);
    flex-wrap: wrap;
    gap: 1rem;
}

.stp-footer__brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stp-cream);
}

.stp-footer__copy {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em;
}

.stp-footer__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.stp-footer__links a {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.25s;
}

.stp-footer__links a:hover { color: var(--stp-gold-light); }

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .stp-split {
        grid-template-columns: 1fr;
    }
    .stp-split--reverse { direction: ltr; }
    .stp-split__image { min-height: 320px; }
    .stp-split__content,
    .stp-split--reverse .stp-split__content {
        padding: 4rem 2.5rem;
    }

    .stp-produce__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stp-experience__cards {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stp-nav {
        padding: 1.25rem 1.5rem;
    }

    .stp-nav__links,
    .stp-nav__cta {
        display: none;
    }

    .stp-nav__toggle { display: flex; }

    .stp-manifesto { padding: 5rem 1.5rem; }

    .stp-produce { padding: 5rem 1rem; }

    .stp-produce__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }

    .stp-experience { padding: 5rem 1.5rem; }

    .stp-visit { padding: 5rem 1.5rem; }

    .stp-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stp-produce__grid {
        grid-template-columns: 1fr;
    }
}
