/* =========================================================
   TEMPFORG INNER PAGES
========================================================= */

.tf-page-hero{
    background:
        radial-gradient(circle at 78% 45%,rgba(192,151,73,.16),transparent 32%),
        linear-gradient(125deg,#111 0%,#1c1915 55%,#10100f 100%);
    color:#fff;
    padding:90px 0;
}

.tf-page-hero .eyebrow{
    color:#e3c177;
    font-size:11px;
    font-weight:800;
    letter-spacing:.24em;
    text-transform:uppercase;
}

.tf-page-hero h1{
    max-width:900px;
    margin:14px 0 14px;
    font:500 clamp(42px,6vw,72px)/1.02 Georgia,serif;
}

.tf-page-hero p{
    max-width:650px;
    margin:0;
    color:#d6d0c7;
    font-size:16px;
}

.tf-page-section{
    padding:90px 0;
}

.tf-page-section.alt{
    background:#fff;
}

.tf-page-title{
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.tf-page-title small{
    color:#8a682e;
    font-size:10px;
    font-weight:900;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.tf-page-title h2{
    margin:10px 0 13px;
    font:500 clamp(32px,4vw,52px)/1.08 Georgia,serif;
}

.tf-page-title p{
    color:#766f64;
    margin:0;
}

/* SPLIT LAYOUT */
.tf-split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.tf-page-card{
    background:#fff;
    border:1px solid rgba(18,18,17,.1);
    border-radius:22px;
    padding:40px;
    box-shadow:0 18px 50px rgba(0,0,0,.05);
}

.tf-page-card h3{
    margin:0 0 12px;
    font:500 28px/1.2 Georgia,serif;
    color:#121211;
}

.tf-page-card h4{
    margin:28px 0 10px;
    font:500 20px/1.3 Georgia,serif;
    color:#2a2620;
}

.tf-page-card p{
    margin:0 0 16px;
    color:#555047;
    font-size:15px;
    line-height:1.8;
}

.tf-card-divider{
    height:1px;
    background:rgba(18,18,17,.08);
    margin:28px 0;
}

.tf-about-media,
.tf-image-placeholder{
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    position:relative;
}

.tf-about-img{
    width:100%;
    height:auto;
    object-fit:cover;
    display:block;
    border-radius:22px;
    transition:transform .4s ease;
}

.tf-about-media:hover .tf-about-img{
    transform:scale(1.02);
}

.tf-image-placeholder{
    min-height:460px;
    display:grid;
    place-items:center;
    text-align:center;
    color:#4f3a1e;
    background:linear-gradient(145deg,#decfaf,#ad8d52);
    padding:30px;
    font:500 46px Georgia,serif;
}

.tf-image-placeholder span{
    display:block;
    margin-top:10px;
    color:#6f5b3c;
    font:500 13px Inter,Arial,sans-serif;
}

/* SHOP */
.tf-shop-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    margin-bottom:30px;
}

.tf-shop-toolbar p{
    margin:0;
    color:#766f64;
}

.tf-shop-filter{
    padding:12px 16px;
    border-radius:999px;
    border:1px solid rgba(18,18,17,.12);
    background:#fff;
    color:#161513;
}

.tf-shop-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.tf-product-card{
    overflow:hidden;
    border-radius:20px;
    border:1px solid rgba(18,18,17,.1);
    background:#fff;
    transition:transform .25s ease,box-shadow .25s ease;
}

.tf-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.tf-product-image{
    aspect-ratio:1/1;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg,#eee4d1,#d0b98c);
    color:#6e4e20;
    font:24px Georgia,serif;
}

.tf-product-body{
    padding:18px;
}

.tf-product-body h3{
    margin:0 0 7px;
    font:500 19px Georgia,serif;
}

.tf-product-body p{
    margin:0 0 8px;
    color:#766f64;
    font-size:13px;
}

.tf-product-price{
    color:#8b6527;
    font-weight:800;
}

/* CONTACT */
.tf-contact-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:22px;
}

.tf-contact-info{
    display:grid;
    gap:15px;
}

.tf-contact-item{
    background:#fff;
    border:1px solid rgba(18,18,17,.1);
    border-radius:20px;
    padding:24px;
}

.tf-contact-item small{
    display:block;
    color:#8a682e;
    font-size:10px;
    font-weight:900;
    letter-spacing:.18em;
    text-transform:uppercase;
    margin-bottom:6px;
}

.tf-contact-item strong{
    font:500 20px Georgia,serif;
}

.tf-contact-item span{
    display:block;
    margin-top:5px;
    color:#766f64;
    font-size:13px;
}

.tf-contact-form{
    background:#fff;
    border:1px solid rgba(18,18,17,.1);
    border-radius:22px;
    padding:30px;
}

.tf-contact-form .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.tf-contact-form label{
    display:block;
    margin-bottom:6px;
    color:#3a352d;
    font-size:12px;
    font-weight:700;
}

.tf-contact-form input,
.tf-contact-form textarea{
    width:100%;
    border:1px solid rgba(18,18,17,.12);
    border-radius:14px;
    background:#faf9f6;
    padding:13px 14px;
    outline:none;
}

.tf-contact-form textarea{
    min-height:150px;
    resize:vertical;
}

.tf-contact-form .field{
    margin-bottom:14px;
}

.tf-contact-form input:focus,
.tf-contact-form textarea:focus{
    border-color:#c09749;
    box-shadow:0 0 0 4px rgba(192,151,73,.1);
}

.tf-about-values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.tf-about-value{
    background:#fff;
    border:1px solid rgba(18,18,17,.1);
    border-radius:20px;
    padding:28px;
}

.tf-about-value b{
    display:block;
    margin-bottom:12px;
    color:#c09749;
    font:32px Georgia,serif;
}

.tf-about-value h3{
    margin:0 0 6px;
    font:500 22px Georgia,serif;
}

.tf-about-value p{
    margin:0;
    color:#766f64;
    font-size:13px;
    line-height:1.8;
}

/* =========================================================
   DESKTOP & LARGE LAPTOP (min-width: 1051px)
========================================================= */
@media (min-width: 1051px) {
    .tf-about-media,
    .tf-image-placeholder {
        position: sticky;
        top: 110px;
    }

    .tf-about-img {
        max-height: 75vh;
    }
}

/* =========================================================
   TABLET & SMALL LAPTOP (max-width: 1050px)
========================================================= */
@media (max-width: 1050px) {
    .tf-split {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tf-about-media,
    .tf-image-placeholder {
        position: relative !important;
        top: auto !important;
        width: 100%;
    }

    .tf-about-img {
        max-height: 450px;
    }

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

    .tf-about-values {
        grid-template-columns: repeat(2, 1fr);
    }

    .tf-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   MOBILE & PHONES (max-width: 768px)
========================================================= */
@media (max-width: 768px) {
    .tf-page-hero {
        padding: 60px 0;
    }

    .tf-page-hero p {
        font-size: 15px;
    }

    .tf-page-section {
        padding: 50px 0;
    }

    .tf-page-title {
        margin-bottom: 30px;
    }

    .tf-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .tf-about-media,
    .tf-image-placeholder {
        position: relative !important;
        top: auto !important;
        border-radius: 18px;
    }

    .tf-about-img {
        max-height: 360px;
        border-radius: 18px;
    }

    .tf-image-placeholder {
        min-height: 280px;
        padding: 20px;
        font-size: 32px;
    }

    .tf-page-card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .tf-page-card h3 {
        font-size: 22px;
    }

    .tf-page-card h4 {
        margin: 22px 0 8px;
        font-size: 18px;
    }

    .tf-page-card p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .tf-card-divider {
        margin: 22px 0;
    }

    .tf-shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .tf-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tf-contact-form {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .tf-contact-form .row {
        grid-template-columns: 1fr;
    }

    .tf-about-values {
        grid-template-columns: 1fr;
    }

    .tf-about-value {
        padding: 22px 18px;
        border-radius: 18px;
    }
}

/* =========================================================
   SMALL PHONES (max-width: 430px)
========================================================= */
@media (max-width: 430px) {
    .tf-shop-grid {
        grid-template-columns: 1fr;
    }

    .tf-about-img {
        max-height: 280px;
    }

    .tf-page-card {
        padding: 20px 16px;
    }
}
