/* ==========================================================================
   TASHI & CO. ENTERPRISES — Design tokens
   Palette: cream ground, espresso ink (from brand mark), signal-teal accent
   (connectivity/network), brass trim, coral for calls to action.
   Type: Playfair Display (headline serif, matches wordmark) + Inter (body)
   + JetBrains Mono (phone numbers / data, telecom-console feel).
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap");

:root {
    --cream: #f3ecdd;
    --cream-card: #fbf7ef;
    --ink: #241b14;
    --ink-soft: #4a3f34;
    --teal: #0e6b5c;
    --teal-deep: #0a4f45;
    --brass: #b8894f;
    --coral: #c1502e;
    --line: rgba(36, 27, 20, 0.14);
    --shadow: 0 20px 50px -25px rgba(36, 27, 20, 0.35);
    --radius: 4px;
    --maxw: 1180px;
    --speed: 0.35s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    margin: 0;
    color: var(--ink);
  
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: sans-serif;
    color: var(--ink);
    margin: 0 0 0.5em;
    line-height: 1.15;
    font-weight: 700;
}
h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}
h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}
h3 {
    font-size: 1.35rem;
}
p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}
a {
    color: inherit;
    text-decoration: none;
}
.mono {
    font-family: "JetBrains Mono", monospace;
    letter-spacing: 0.02em;
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-deep);
    font-weight: 600;
    margin-bottom: 14px;
}
.eyebrow::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--coral);
    display: inline-block;
}

section {
    padding: 88px 0;
}
.section-tight {
    padding: 56px 0;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition:
        transform var(--speed) ease,
        box-shadow var(--speed) ease,
        background var(--speed) ease,
        color var(--speed) ease;
}
.btn-primary {
    background: var(--coral);
    color: #fff8f0;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -12px rgba(193, 80, 46, 0.55);
}
.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: var(--teal-deep);
    padding: 8px 0;
    border-bottom: 1.5px solid var(--teal-deep);
    border-radius: 0;
}
.btn-ghost:hover {
    gap: 16px;
}

/* ---------- Header ---------- */
header.site {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #f8ecd4;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    max-width: var(--maxw);
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand img {
    height: 100px;
    width: auto;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-text strong {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
}
.brand-text span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    color: var(--teal-deep);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 4px 0;
    color: var(--ink);
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--speed) ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--coral);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-phone {
font-family: sans-serif;    font-size: 16px;
    font-weight: 600;
    color: var(--teal-deep);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: var(--speed);
}

@media (max-width: 920px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-130%);
        opacity: 0;
        transition:
            transform var(--speed) ease,
            opacity var(--speed) ease;
        z-index: 400;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-phone {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
}

/* ---------- Hero network signature ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
}
@media (max-width: 920px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero h1 {
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: normal;
    color: var(--teal);
}
.hero-lede {
    font-size: 1.12rem;
    max-width: 52ch;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 46px;
    flex-wrap: wrap;
}
.hero-stats div strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--ink);
}
.hero-stats div span {
    font-size: 0.78rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.signal-stage {
    position: relative;
    aspect-ratio: 1/1;
}
.signal-stage svg {
    width: 100%;
    height: 100%;
}
.node-pulse {
    animation: pulse 2.6s ease-in-out infinite;
}
.node-pulse.d1 {
    animation-delay: 0.2s;
}
.node-pulse.d2 {
    animation-delay: 0.7s;
}
.node-pulse.d3 {
    animation-delay: 1.2s;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 0.35;
        r: 4;
    }
    50% {
        opacity: 1;
        r: 6.5;
    }
}
.signal-line {
    stroke-dasharray: 6 8;
    animation: dash 6s linear infinite;
}
@keyframes dash {
    to {
        stroke-dashoffset: -140;
    }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1.in {
    transition-delay: 0.08s;
}
.reveal-delay-2.in {
    transition-delay: 0.16s;
}
.reveal-delay-3.in {
    transition-delay: 0.24s;
}
.reveal-delay-4.in {
    transition-delay: 0.32s;
}
.reveal-delay-5.in {
    transition-delay: 0.4s;
}

/* ---------- Section headers ---------- */
.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---------- Service network (signature layout) ---------- */
.service-network {
    position: relative;
}
.service-rail {
    position: absolute;
    left: 29px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--brass) 0 6px, transparent 6px 12px);
}
@media (max-width: 760px) {
    .service-rail {
        display: none;
    }
}

.service-row {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 26px;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}
.service-row:last-child {
    border-bottom: none;
}
.service-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream-card);
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}
.service-node svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
}
.service-body {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.service-copy {
    flex: 1 1 340px;
}
.service-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.7rem;
    color: var(--brass);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.service-copy h3 {
    margin-bottom: 8px;
}
.service-audience {
    flex: 0 0 auto;
    align-self: flex-start;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--ink-soft);
    white-space: nowrap;
}

/* ---------- Cards ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
@media (max-width: 860px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 620px) {
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--cream-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    transition:
        transform var(--speed) ease,
        box-shadow var(--speed) ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.card .num {
    font-family: "JetBrains Mono", monospace;
    color: var(--brass);
    font-size: 0.8rem;
    margin-bottom: 14px;
    display: block;
}

/* ---------- Band (dark) ---------- */
.band {
    background: var(--ink);
    color: var(--cream);
}
.band h2,
.band h3 {
    color: var(--cream);
}
.band p {
    color: #cfc4b5;
}
.band .card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ---------- Process timeline ---------- */
.process {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
}
.process-step {
    flex: 1 1 220px;
    min-width: 200px;
    padding: 0 22px;
    position: relative;
}
.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 1.5px;
    background: var(--brass);
}
.process-num {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: var(--brass);
}

/* ---------- Stats strip ---------- */
.stats-strip {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
}
.stats-strip div {
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.stats-strip strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
}
.stats-strip span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
}

/* ---------- Coverage strip (marquee-esque) ---------- */
.coverage {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}
.coverage-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll-left 26s linear infinite;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.coverage-track span {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
    white-space: nowrap;
}

/* ---------- Testimonial ---------- */
.quote-card {
    background: var(--cream-card);
    border-left: 3px solid var(--coral);
    padding: 30px 34px;
    border-radius: var(--radius);
}
.quote-card p {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    color: var(--ink);
    font-style: italic;
}
.quote-card footer {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    color: var(--teal-deep);
    margin-top: 14px;
}

/* ---------- Forms ---------- */
.form-panel {
    background: var(--cream-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
.field {
    margin-bottom: 20px;
}
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--ink);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.4px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    transition:
        border-color var(--speed) ease,
        box-shadow var(--speed) ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(14, 107, 92, 0.14);
}
.field textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    font-size: 0.8rem;
    color: var(--ink-soft);
    margin-top: 10px;
}
.form-success {
    background: #e7f3ef;
    border: 1px solid var(--teal);
    color: var(--teal-deep);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-weight: 600;
}
.form-error {
    background: #fbe9e4;
    border: 1px solid var(--coral);
    color: #8a3821;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-weight: 600;
}

/* ---------- Contact info cards ---------- */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.info-row .ic {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-row .ic svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
}
.info-row strong {
    display: block;
    font-size: 0.9rem;
}
.info-row span,
.info-row a {
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.info-row a:hover {
    color: var(--teal-deep);
}

/* ---------- Footer ---------- */
footer.site {
    background: var(--ink);
    color: #d9cfc0;
    padding: 60px 0 26px;
}
footer.site p{
    color:#fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 44px;
}
@media (max-width: 820px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 520px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
footer.site h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 0.03em;
}
footer.site ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer.site a {
    color: #fff;
    font-size:16px;
    transition: color var(--speed);
}
footer.site a:hover {
    color: var(--brass);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-brand img {
    height: 100px;
 
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: #fff;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px -10px rgba(37, 211, 102, 0.6);
    transition: transform var(--speed) ease;
}
.wa-float:hover {
    transform: scale(1.08);
}
.wa-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
.wa-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--line);
}
.breadcrumb {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.75rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
}
.breadcrumb a {
    color: var(--teal-deep);
}
.footer-grid p{
    color:#fff;
}

/* ---------- Values grid (about) ---------- */
.value-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.value-item:last-child {
    border-bottom: none;
}
.value-mark {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--coral);
    flex-shrink: 0;
    width: 36px;
}

/* ---------- Utility ---------- */
.center {
    text-align: center;
}
.mt-0 {
    margin-top: 0;
}
.divider {
    height: 1px;
    background: var(--line);
    margin: 60px 0;
    border: none;
}
