/* ==========================================================================
   TradeAct Hub — custom theme styles
   Palette: gold #C9A24A, deep brown #3E2C20, warm neutral #F5EFE6, black #1A1A1A
   ========================================================================== */

:root {
    --tah-gold: #C9A24A;
    --tah-gold-dark: #A8842F;
    --tah-brown: #3E2C20;
    --tah-neutral: #F5EFE6;
    --tah-neutral-dark: #E7DDC9;
    --tah-black: #1A1A1A;
    --tah-text: #2B2118;
    --tah-muted: #6B5E50;
}

/* ---------- Section base ---------- */
.tah-home { background: #fff; }
.tah-section { padding: 64px 0; background: #fff; }
.tah-section + .tah-section { border-top: 1px solid var(--tah-neutral-dark); }
.tah-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tah-gold-dark);
    font-weight: 700;
    margin-bottom: 8px;
}
.tah-section-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--tah-black);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}
.tah-section-lead {
    font-size: 16px;
    color: var(--tah-muted);
    max-width: 760px;
    margin: 0 auto 8px;
    line-height: 1.7;
}
.tah-muted { color: var(--tah-muted); }

/* ---------- Buttons ---------- */
.tah-btn {
    display: inline-block;
    padding: 12px 26px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}
.tah-btn-gold { background: var(--tah-gold); color: #fff; border-color: var(--tah-gold); }
.tah-btn-gold:hover { background: var(--tah-gold-dark); border-color: var(--tah-gold-dark); color: #fff; }
.tah-btn-dark { background: var(--tah-black); color: #fff; border-color: var(--tah-black); }
.tah-btn-dark:hover { background: var(--tah-brown); border-color: var(--tah-brown); color: #fff; }
.tah-btn-outline { background: transparent; color: var(--tah-black); border-color: var(--tah-black); }
.tah-btn-outline:hover { background: var(--tah-black); color: #fff; }
.tah-btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.tah-btn-outline-light:hover { background: #fff; color: var(--tah-black); }

/* ---------- Hero ---------- */
.tah-hero-section { padding: 0; background: var(--tah-black); }
.tah-hero-stage { position: relative; min-height: 540px; overflow: hidden; }
.tah-hero-bg { position: absolute; inset: 0; }
.tah-hero-bg .owl-carousel,
.tah-hero-bg .tah-hero-slide { height: 100%; }
.tah-hero-bg .tah-hero-fallback {
    height: 540px;
    background: linear-gradient(135deg, #3E2C20 0%, #1A1A1A 60%, #C9A24A 130%);
}
.tah-hero-img { height: 540px; width: 100%; object-fit: cover; }
.tah-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}
.tah-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 80px 0;
    color: #fff;
}
.tah-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tah-gold);
    font-weight: 600;
    margin-bottom: 14px;
}
.tah-hero-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}
.tah-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.88);
    margin-bottom: 12px;
}
.tah-hero-tag { color: var(--tah-gold); font-size: 16px; margin-bottom: 24px; }
.tah-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 768px) {
    .tah-hero-stage { min-height: 460px; }
    .tah-hero-content { padding: 60px 0; }
    .tah-hero-img, .tah-hero-bg .tah-hero-fallback { height: 460px; }
}

/* ---------- Bliss Designs ---------- */
.tah-bliss { background: var(--tah-neutral); }
.tah-bliss-quote { color: var(--tah-brown); font-size: 15px; line-height: 1.8; }
.tah-tier-card {
    padding: 36px 28px;
    border-radius: 4px;
    height: 100%;
    border: 1px solid var(--tah-neutral-dark);
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tah-tier-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(62,44,32,0.12); }
.tah-tier-card h3 { font-size: 22px; font-weight: 700; color: var(--tah-black); margin: 12px 0 12px; }
.tah-tier-card p { color: var(--tah-muted); margin-bottom: 22px; }
.tah-tier-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tah-gold-dark);
    font-weight: 700;
}
.tah-tier-signature { background: linear-gradient(180deg, #fff 0%, #FBF6EC 100%); border-color: var(--tah-gold); }
.tah-tier-essentials { background: #fff; }

/* ---------- Partner Brands ---------- */
.tah-partner-brands { background: #fff; }
.tah-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: var(--tah-neutral);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    aspect-ratio: 1.4 / 1;
}
.tah-brand-card:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.tah-brand-card img { max-width: 100%; max-height: 60px; object-fit: contain; }
.tah-brand-name { font-size: 12px; color: var(--tah-text); margin-top: 8px; font-weight: 600; }

/* ---------- Bespoke Studio ---------- */
.tah-bespoke { background: var(--tah-brown); color: #fff; }
.tah-bespoke .tah-section-title { color: #fff; }
.tah-bespoke .tah-section-lead { color: rgba(255,255,255,0.8); }
.tah-bespoke .tah-eyebrow { color: var(--tah-gold); }
.tah-process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}
.tah-step {
    flex: 1 1 180px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 24px 18px;
    text-align: center;
    color: #fff;
}
.tah-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--tah-gold);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 10px;
}
.tah-step h4 { font-size: 18px; margin: 0 0 6px; color: #fff; }
.tah-step p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
.tah-step-arrow {
    display: flex; align-items: center; font-size: 28px; color: var(--tah-gold);
}
@media (max-width: 768px) {
    .tah-step-arrow { display: none; }
    .tah-step { flex: 1 1 100%; }
}

/* ---------- Fabric Marketplace ---------- */
.tah-fabric { background: var(--tah-neutral); }
.tah-fabric-tile {
    display: block;
    text-align: center;
    padding: 32px 18px;
    background: #fff;
    border: 1px solid var(--tah-neutral-dark);
    border-radius: 4px;
    text-decoration: none;
    color: var(--tah-text);
    transition: all 0.2s ease;
    height: 100%;
}
.tah-fabric-tile:hover { border-color: var(--tah-gold); transform: translateY(-3px); }
.tah-fabric-tile h4 { font-size: 18px; font-weight: 700; color: var(--tah-black); margin: 0 0 4px; }
.tah-fabric-tile span { font-size: 13px; color: var(--tah-muted); }

/* ---------- Value Chain ---------- */
.tah-value-chain { background: #fff; }
.tah-chain-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow-x: auto;
    padding: 28px 0 16px;
    gap: 0;
}
.tah-chain-node {
    flex: 0 0 auto;
    text-align: center;
    min-width: 130px;
    padding: 10px;
}
.tah-chain-icon {
    font-size: 26px;
    color: var(--tah-gold-dark);
    width: 64px;
    height: 64px;
    background: var(--tah-neutral);
    border: 2px solid var(--tah-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.tah-join-icon { color: var(--tah-gold); }
.tah-why-icon { color: var(--tah-gold-dark); }
.tah-chain-label { font-size: 13px; font-weight: 600; color: var(--tah-text); }
.tah-chain-line {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--tah-gold) 0%, var(--tah-neutral-dark) 100%);
    min-width: 30px;
}
@media (max-width: 768px) {
    .tah-chain-track { flex-direction: column; }
    .tah-chain-line { width: 2px; height: 24px; min-width: 0; min-height: 24px; background: var(--tah-gold); }
}

/* ---------- Join the Hub ---------- */
.tah-join-hub { background: var(--tah-black); color: #fff; }
.tah-join-hub .tah-section-title { color: #fff; }
.tah-join-hub .tah-section-lead { color: rgba(255,255,255,0.78); }
.tah-join-hub .tah-eyebrow { color: var(--tah-gold); }
.tah-join-card {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,162,74,0.3);
    border-radius: 4px;
    height: 100%;
}
.tah-join-icon { font-size: 36px; margin-bottom: 12px; }
.tah-join-card h4 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.tah-join-card p { color: rgba(255,255,255,0.7); margin-bottom: 18px; font-size: 14px; }

/* ---------- Why ---------- */
.tah-why { background: var(--tah-neutral); }
.tah-why-card {
    background: #fff;
    padding: 22px 16px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
    border: 1px solid var(--tah-neutral-dark);
}
.tah-why-icon { font-size: 28px; margin-bottom: 10px; }
.tah-why-card h5 { font-size: 15px; font-weight: 700; color: var(--tah-black); margin-bottom: 6px; }
.tah-why-card p { font-size: 13px; color: var(--tah-muted); margin: 0; }

/* ---------- Closing CTA ---------- */
.tah-closing { background: linear-gradient(135deg, var(--tah-brown) 0%, var(--tah-black) 100%); color: #fff; }
.tah-closing-block { padding: 32px 0; }
.tah-closing-line { font-size: 18px; line-height: 1.8; margin: 0; color: rgba(255,255,255,0.92); }
.tah-closing-emph { color: var(--tah-gold); font-weight: 700; font-size: 22px; margin-top: 12px !important; }
.tah-closing-welcome { font-size: clamp(28px, 4vw, 42px); color: #fff; margin: 24px 0 8px; font-weight: 700; }

/* ---------- Page hero (bespoke page) ---------- */
.tah-page-hero {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, var(--tah-brown) 0%, var(--tah-black) 100%);
    color: #fff;
    text-align: center;
}
.tah-page-hero .tah-eyebrow { color: var(--tah-gold); }
.tah-page-title { color: #fff; font-size: clamp(30px, 4vw, 48px); font-weight: 700; margin-bottom: 14px; }
.tah-page-lead { color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.7; }

/* ---------- Bespoke form ---------- */
.tah-bespoke-form-wrap { background: var(--tah-neutral); }
.tah-form-card {
    background: #fff;
    padding: 36px;
    border-radius: 4px;
    border: 1px solid var(--tah-neutral-dark);
}
.tah-form .form-control {
    border-radius: 2px;
    border: 1px solid var(--tah-neutral-dark);
    padding: 10px 14px;
}
.tah-form .form-control:focus {
    border-color: var(--tah-gold);
    box-shadow: 0 0 0 2px rgba(201,162,74,0.2);
}
.tah-form .form-label { font-weight: 600; color: var(--tah-text); font-size: 14px; }

/* ---------- Header / Nav ---------- */
.tah-desktop-nav .nav-link {
    color: var(--tah-text) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 14px;
    transition: color 0.2s ease;
}
.tah-desktop-nav .nav-item.active .nav-link,
.tah-desktop-nav .nav-link:hover { color: var(--tah-gold-dark) !important; }
.tah-cta-btn {
    background: var(--tah-gold);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease;
}
.tah-cta-btn:hover { background: var(--tah-gold-dark); color: #fff !important; }
.tah-cta-mobile { background: var(--tah-gold); color: #fff !important; margin-top: 8px; border-radius: 2px; }
.tah-mobile-nav .nav-link { padding: 10px 0; font-weight: 500; }

/* ---------- Footer ---------- */
.tah-footer-wrap { background: var(--tah-black); color: rgba(255,255,255,0.85); margin-top: 0; }
.tah-footer { padding-top: 60px; }
.tah-footer-top { padding-bottom: 40px; }
.tah-footer-logo img { max-width: 180px; max-height: 60px; object-fit: contain; filter: brightness(1.2); }
.tah-footer-tagline { color: rgba(255,255,255,0.85); }
.tah-footer-tagline-emph { color: var(--tah-gold); font-weight: 600; letter-spacing: 0.04em; }
.tah-footer-desc { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; }
.tah-footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}
.tah-footer-list { list-style: none; padding: 0; margin: 0; }
.tah-footer-list li { margin-bottom: 8px; }
.tah-footer-list a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s ease; }
.tah-footer-list a:hover { color: var(--tah-gold); }
.tah-footer-contact { display: flex; flex-direction: column; gap: 6px; }
.tah-footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; }
.tah-footer-contact a:hover { color: var(--tah-gold); }
.tah-footer-contact i { color: var(--tah-gold); margin-right: 8px; }
.tah-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.tah-social-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
}
.tah-social-btn:hover { background: var(--tah-gold); color: #fff; }
.tah-footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0; }
.tah-footer-bottom p { color: rgba(255,255,255,0.6); }
.tah-footer-mini a { color: rgba(255,255,255,0.6); text-decoration: none; }
.tah-footer-mini a:hover { color: var(--tah-gold); }

/* ---------- Misc utility ---------- */
.tah-bliss-quote em { color: var(--tah-gold-dark); font-style: italic; }
