/* =========================================================
   TASTY AGRO — PREMIUM LUXURY STYLE V2
   Clean / Editorial / Corporate / Premium
   Complete replacement for old style.css
========================================================= */

:root {
    --ta-green: #0b2419;
    --ta-green-2: #153829;
    --ta-green-3: #244b3a;
    --ta-cream: #f4f1e8;
    --ta-paper: #faf9f5;
    --ta-gold: #b89a61;
    --ta-gold-light: #d5be8c;
    --ta-text: #18231e;
    --ta-muted: #6c756f;
    --ta-white: #fff;
    --ta-border: rgba(24,35,30,.13);
    --ta-dark-border: rgba(255,255,255,.13);

    --ta-serif: "Playfair Display", Georgia, serif;
    --ta-sans: "DM Sans", Arial, sans-serif;

    --ta-container: 1380px;
    --ta-ease: cubic-bezier(.22,.61,.36,1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--ta-paper);
    color: var(--ta-text);
    font-family: var(--ta-sans);
    font-size: 15px;
    line-height: 1.7;
}

body.ta-navigation-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

.ta-container {
    width: min(calc(100% - 70px), var(--ta-container));
    margin-inline: auto;
}


/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

.ta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ta-green-3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.2;
}

.ta-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.ta-kicker-light {
    color: var(--ta-gold-light);
}

.ta-home-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.ta-home-section-heading h2 {
    max-width: 760px;
    margin: 15px 0 0;
    color: var(--ta-green);
    font-family: var(--ta-serif);
    font-size: clamp(43px, 5vw, 70px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.035em;
}

.ta-home-section-heading h2 em {
    color: var(--ta-green-3);
    font-weight: 400;
}

.ta-minimal-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--ta-border);
    color: var(--ta-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: .3s var(--ta-ease);
}

.ta-minimal-link i {
    transition: transform .3s var(--ta-ease);
}

.ta-minimal-link:hover {
    border-color: var(--ta-gold);
    color: var(--ta-gold);
}

.ta-minimal-link:hover i {
    transform: translate(3px,-3px);
}


/* =========================================================
   BUTTONS
========================================================= */

.ta-luxury-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-width: 205px;
    padding: 15px 16px 15px 21px;
    background: var(--ta-gold);
    color: var(--ta-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    transition: .35s var(--ta-ease);
}

.ta-luxury-button i {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border: 1px solid rgba(11,36,25,.25);
}

.ta-luxury-button:hover {
    background: var(--ta-gold-light);
    color: var(--ta-green);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.ta-luxury-button:hover i {
    transform: translate(3px,-3px);
}

.ta-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.4);
    color: var(--ta-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ta-outline-button:hover {
    color: var(--ta-gold-light);
    border-color: var(--ta-gold-light);
}


/* =========================================================
   HEADER — STABLE / ALWAYS ACCESSIBLE
========================================================= */

/* =========================================================
   HEADER — FIXED / ALWAYS VISIBLE
========================================================= */

.ta-site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
}

.ta-site-header-home,
.ta-site-header-inner {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
}

.ta-top-strip {
    height: 34px;
    background: rgba(7,23,15,.78);
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.7);
    backdrop-filter: blur(12px);
}

.ta-top-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.ta-top-left,
.ta-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .13em;
}

.ta-top-left span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ta-top-left i {
    color: var(--ta-gold-light);
}

.ta-top-right a {
    color: rgba(255,255,255,.7);
}

.ta-top-right a:hover {
    color: var(--ta-gold-light);
}

.ta-top-divider {
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,.2);
}

.ta-main-nav {
    height: 84px;
    border-bottom: 1px solid rgba(255,255,255,.13);
    transition:
        background .35s ease,
        box-shadow .35s ease;
}

.ta-main-nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.ta-brand {
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
}

.ta-brand-box {
    display: block;
    width: 142px;
    height: 62px;
    overflow: hidden;
    background: #fff;
}

.ta-brand-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ta-primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 28px);
    margin-left: auto;
    margin-right: 28px;
}

.ta-primary-nav > a,
.ta-products-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 84px;
    color: rgba(255,255,255,.88);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.ta-primary-nav > a::after,
.ta-products-nav > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--ta-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ta-ease);
}

.ta-primary-nav > a:hover,
.ta-primary-nav > a.active,
.ta-products-nav > a:hover,
.ta-products-nav > a.active {
    color: var(--ta-gold-light);
}

.ta-primary-nav > a:hover::after,
.ta-primary-nav > a.active::after,
.ta-products-nav > a:hover::after,
.ta-products-nav > a.active::after {
    transform: scaleX(1);
}

.ta-products-nav {
    position: static;
}

.ta-products-nav > a i {
    font-size: 8px;
    transition: transform .3s ease;
}

.ta-products-nav:hover > a i {
    transform: rotate(180deg);
}

.ta-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ta-header-enquire {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px 10px 15px;
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ta-header-enquire:hover {
    background: var(--ta-gold);
    border-color: var(--ta-gold);
    color: var(--ta-green);
}

.ta-mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.ta-mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 7px auto;
    background: currentColor;
    transition: .3s ease;
}


/* =========================================================
   HEADER SCROLLED — NO HIDE
========================================================= */

.ta-header-scrolled .ta-main-nav {
    background: rgba(250,249,245,.98);
    border-bottom-color: var(--ta-border);
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
    backdrop-filter: blur(14px);
}

.ta-header-scrolled .ta-primary-nav > a,
.ta-header-scrolled .ta-products-nav > a {
    color: var(--ta-green);
}

.ta-header-scrolled .ta-primary-nav > a:hover,
.ta-header-scrolled .ta-primary-nav > a.active,
.ta-header-scrolled .ta-products-nav > a:hover,
.ta-header-scrolled .ta-products-nav > a.active {
    color: var(--ta-green-3);
}

.ta-header-scrolled .ta-header-enquire {
    border-color: var(--ta-green);
    color: var(--ta-green);
}

.ta-header-scrolled .ta-mobile-toggle {
    color: var(--ta-green);
}


/* =========================================================
   PRODUCTS MEGA MENU
========================================================= */

.ta-product-mega {
    position: absolute;
    top: 118px;
    left: 50%;
    width: min(calc(100% - 70px), 1180px);
    display: grid;
    grid-template-columns: 255px 1fr;
    gap: 20px;
    padding: 22px;
    background: rgba(250,249,245,.98);
    border: 1px solid var(--ta-border);
    box-shadow: 0 25px 55px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%,10px);
    transition: .3s var(--ta-ease);
}

.ta-products-nav:hover .ta-product-mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0);
}

.ta-mega-intro {
    padding: 22px;
    background: var(--ta-green);
    color: #fff;
}

.ta-mega-kicker {
    color: var(--ta-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
}

.ta-mega-intro h3 {
    margin: 25px 0 14px;
    font-family: var(--ta-serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.ta-mega-intro h3 em {
    color: var(--ta-gold-light);
}

.ta-mega-intro p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
    line-height: 1.7;
}

.ta-mega-view {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ta-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ta-mega-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ta-border);
}

.ta-mega-product {
    position: relative;
    min-height: 155px;
    overflow: hidden;
    background: var(--ta-green);
}

.ta-mega-product img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ta-ease);
}

.ta-mega-product::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 25%,rgba(5,17,11,.85));
}

.ta-mega-product:hover img {
    transform: scale(1.06);
}

.ta-mega-number {
    position: absolute;
    top: 13px;
    left: 14px;
    z-index: 2;
    color: rgba(255,255,255,.8);
    font-size: 8px;
}

.ta-mega-product > div {
    position: absolute;
    right: 15px;
    bottom: 13px;
    left: 15px;
    z-index: 2;
}

.ta-mega-product small {
    display: block;
    color: var(--ta-gold-light);
    font-size: 7px;
    letter-spacing: .14em;
}

.ta-mega-product strong {
    color: #fff;
    font-family: var(--ta-serif);
    font-size: 19px;
    font-weight: 400;
}

.ta-mega-product > i {
    position: absolute;
    top: 13px;
    right: 14px;
    z-index: 2;
    color: #fff;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.ta-mobile-navigation {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: none;
    overflow-y: auto;
    background: var(--ta-green);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .35s var(--ta-ease);
}

.ta-mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ta-mobile-navigation-inner {
    width: min(calc(100% - 34px), 650px);
    margin: auto;
    padding: 115px 0 40px;
}

.ta-mobile-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ta-dark-border);
}

.ta-mobile-heading span {
    font-family: var(--ta-serif);
    font-size: 28px;
}

.ta-mobile-heading small {
    color: rgba(255,255,255,.4);
    font-size: 8px;
    letter-spacing: .15em;
}

.ta-mobile-links a {
    display: grid;
    grid-template-columns: 38px 1fr 20px;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--ta-dark-border);
}

.ta-mobile-links a span {
    color: var(--ta-gold-light);
    font-size: 8px;
}

.ta-mobile-links a strong {
    font-family: var(--ta-serif);
    font-size: 25px;
    font-weight: 400;
}

.ta-mobile-links a:hover {
    color: var(--ta-gold-light);
}

.ta-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding: 15px 18px;
    background: var(--ta-gold);
    color: var(--ta-green);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ta-mobile-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}

.ta-mobile-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
}

.ta-mobile-contact i {
    color: var(--ta-gold-light);
}

.ta-toggle-open span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.ta-toggle-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}


/* =========================================================
   HERO
========================================================= */

.ta-hero {
    position: relative;
    min-height: 760px;
    height: 100svh;
    overflow: hidden;
    background: var(--ta-green);
    color: #fff;
}

.ta-hero-media,
.ta-hero-gradient {
    position: absolute;
    inset: 0;
}

.ta-hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1.2s ease, transform 6.5s var(--ta-ease);
}

.ta-hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.ta-hero-gradient {
    background:
        linear-gradient(90deg,rgba(4,17,11,.83),rgba(4,17,11,.42) 52%,rgba(4,17,11,.18)),
        linear-gradient(0deg,rgba(4,17,11,.58),transparent 45%);
}

.ta-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 75px;
}

.ta-hero-content {
    max-width: 720px;
    padding-top: 40px;
}

.ta-hero-overline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.7);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .19em;
}

.ta-hero-overline span:first-child {
    color: var(--ta-gold-light);
}

.ta-hero-overline i {
    width: 35px;
    height: 1px;
    background: var(--ta-gold-light);
}

.ta-hero h1 {
    margin: 0;
    font-family: var(--ta-serif);
    font-size: clamp(65px,8.5vw,122px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.055em;
}

.ta-hero h1 em {
    color: var(--ta-gold-light);
}

.ta-hero-content > p {
    max-width: 500px;
    margin: 30px 0 32px;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.8;
}

.ta-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.ta-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.82);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ta-hero-link i {
    color: var(--ta-gold-light);
}

.ta-hero-meta {
    position: absolute;
    right: 35px;
    bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.52);
    font-size: 8px;
    letter-spacing: .2em;
}

.ta-hero-meta i {
    width: 24px;
    height: 1px;
    background: var(--ta-gold-light);
}

.ta-scroll {
    position: absolute;
    bottom: 30px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.55);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .2em;
}

.ta-scroll i {
    color: var(--ta-gold-light);
}


/* =========================================================
   INTRO
========================================================= */

.ta-editorial-intro {
    padding: 125px 0;
    background: var(--ta-cream);
}

.ta-editorial-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 70px;
}

.ta-editorial-index {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--ta-green-3);
}

.ta-editorial-index span {
    color: var(--ta-gold);
    font-size: 11px;
    font-weight: 700;
}

.ta-editorial-index strong {
    font-size: 8px;
    line-height: 1.8;
    letter-spacing: .17em;
}

.ta-editorial-copy {
    max-width: 1000px;
}

.ta-small-label {
    color: var(--ta-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}

.ta-editorial-copy h2 {
    margin: 18px 0 40px;
    color: var(--ta-green);
    font-family: var(--ta-serif);
    font-size: clamp(44px,5.5vw,78px);
    font-weight: 400;
    line-height: .98;
    letter-spacing: -.04em;
}

.ta-editorial-copy h2 em {
    color: var(--ta-green-3);
}

.ta-editorial-lower {
    display: grid;
    grid-template-columns: minmax(280px,520px) 1fr;
    align-items: center;
    gap: 60px;
}

.ta-editorial-lower p {
    margin: 0;
    color: var(--ta-muted);
    font-size: 13px;
}

.ta-circle-link {
    justify-self: end;
    display: grid;
    width: 125px;
    height: 125px;
    place-items: center;
    align-content: center;
    gap: 8px;
    border: 1px solid var(--ta-border);
    border-radius: 50%;
    color: var(--ta-green);
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.ta-circle-link:hover {
    background: var(--ta-green);
    border-color: var(--ta-green);
    color: var(--ta-gold-light);
}


/* =========================================================
   SCALE
========================================================= */

.ta-scale {
    padding: 75px 0;
    background: var(--ta-green);
    color: #fff;
}

.ta-scale-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.ta-scale-intro > span {
    color: var(--ta-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
}

.ta-scale-intro p {
    max-width: 360px;
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 11px;
}

.ta-scale-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--ta-dark-border);
}

.ta-scale-item {
    min-height: 190px;
    padding: 22px 25px;
    border-right: 1px solid var(--ta-dark-border);
}

.ta-scale-item:first-child {
    border-left: 1px solid var(--ta-dark-border);
}

.ta-scale-item strong {
    display: block;
    margin-bottom: 38px;
    color: var(--ta-gold-light);
    font-family: var(--ta-serif);
    font-size: 32px;
    font-weight: 400;
}

.ta-scale-item span {
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
}

.ta-scale-item p {
    max-width: 180px;
    margin: 7px 0 0;
    color: rgba(255,255,255,.47);
    font-size: 10px;
}


/* =========================================================
   PRODUCT MOSAIC
========================================================= */

.ta-home-products {
    padding: 125px 0;
    background: var(--ta-paper);
}

.ta-product-mosaic {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 480px 350px;
    gap: 3px;
}

.ta-mosaic-card {
    position: relative;
    overflow: hidden;
    background: var(--ta-green);
    color: #fff;
}

.ta-mosaic-feature {
    grid-row: 1;
}

.ta-mosaic-wide {
    grid-column: 1 / 3;
}

.ta-mosaic-export {
    grid-column: 3;
}

.ta-mosaic-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ta-ease);
}

.ta-mosaic-card:hover > img {
    transform: scale(1.05);
}

.ta-mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 25%,rgba(5,17,11,.82));
}

.ta-mosaic-number {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: rgba(255,255,255,.75);
    font-size: 8px;
    font-weight: 700;
}

.ta-mosaic-content {
    position: absolute;
    right: 24px;
    bottom: 23px;
    left: 24px;
    z-index: 2;
}

.ta-mosaic-content small {
    display: block;
    margin-bottom: 7px;
    color: var(--ta-gold-light);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .17em;
}

.ta-mosaic-content h3 {
    max-width: 420px;
    margin: 0;
    font-family: var(--ta-serif);
    font-size: clamp(29px,3.6vw,49px);
    font-weight: 400;
    line-height: .95;
}

.ta-mosaic-card:not(.ta-mosaic-feature) .ta-mosaic-content h3 {
    font-size: clamp(25px,2.8vw,38px);
}

.ta-mosaic-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
}

.ta-mosaic-card:hover .ta-mosaic-arrow {
    background: var(--ta-gold);
    color: var(--ta-green);
}


/* =========================================================
   CINEMATIC QUALITY / GLOBAL / CLOSING
========================================================= */

.ta-cinematic,
.ta-global-home,
.ta-home-closing {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.ta-cinematic-image,
.ta-global-image,
.ta-closing-image {
    position: absolute;
    inset: 0;
}

.ta-cinematic-image img,
.ta-global-image img,
.ta-closing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-cinematic-overlay,
.ta-global-shade,
.ta-closing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(4,17,11,.9),rgba(4,17,11,.43),rgba(4,17,11,.15));
}

.ta-cinematic-content,
.ta-global-content,
.ta-closing-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.ta-cinematic-content h2,
.ta-global-content h2,
.ta-closing-content h2 {
    margin: 20px 0 25px;
    font-family: var(--ta-serif);
    font-size: clamp(52px,6.8vw,92px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.045em;
}

.ta-cinematic-content h2 em,
.ta-global-content h2 em,
.ta-closing-content h2 em {
    color: var(--ta-gold-light);
}

.ta-cinematic-content p,
.ta-global-content p {
    max-width: 500px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.65);
    font-size: 13px;
}


/* =========================================================
   VALUES
========================================================= */

.ta-values {
    padding: 125px 0;
    background: var(--ta-cream);
}

.ta-values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--ta-border);
}

.ta-value-card {
    min-height: 320px;
    padding: 25px;
    border-right: 1px solid var(--ta-border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s var(--ta-ease);
}

.ta-value-card:first-child {
    border-left: 1px solid var(--ta-border);
}

.ta-value-card.ta-visible {
    opacity: 1;
    transform: translateY(0);
}

.ta-value-card > span {
    color: var(--ta-gold);
    font-size: 8px;
    font-weight: 700;
}

.ta-value-card > i {
    display: block;
    margin: 55px 0 22px;
    color: var(--ta-green-3);
    font-size: 27px;
}

.ta-value-card h3 {
    max-width: 210px;
    margin: 0 0 10px;
    font-family: var(--ta-serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.05;
}

.ta-value-card p {
    max-width: 230px;
    margin: 0;
    color: var(--ta-muted);
    font-size: 10px;
}


/* =========================================================
   JOURNEY
========================================================= */

.ta-journey-home {
    padding: 125px 0;
    background: var(--ta-paper);
}

.ta-journey-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

.ta-journey-line::before {
    content: "";
    position: absolute;
    top: 63px;
    right: 10%;
    left: 10%;
    height: 1px;
    background: var(--ta-border);
}

.ta-journey-stage {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s var(--ta-ease);
}

.ta-journey-stage.ta-visible {
    opacity: 1;
    transform: translateY(0);
}

.ta-journey-stage > span {
    display: block;
    margin-bottom: 15px;
    color: var(--ta-gold);
    font-size: 8px;
    font-weight: 700;
}

.ta-stage-icon {
    display: grid;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    place-items: center;
    border: 1px solid var(--ta-border);
    border-radius: 50%;
    background: var(--ta-paper);
    color: var(--ta-green-3);
    font-size: 20px;
}

.ta-journey-stage h3 {
    margin: 0;
    font-family: var(--ta-serif);
    font-size: 23px;
    font-weight: 400;
}

.ta-journey-stage p {
    margin: 2px 0 0;
    color: var(--ta-muted);
    font-size: 10px;
}


/* =========================================================
   FACILITY
========================================================= */

.ta-home-facility {
    padding: 125px 0;
    background: var(--ta-cream);
}

.ta-facility-home-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    min-height: 560px;
}

.ta-facility-hero {
    position: relative;
    overflow: hidden;
    background: var(--ta-green);
}

.ta-facility-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .25s ease;
}

.ta-facility-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(5,17,11,.78));
}

.ta-facility-hero-caption {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    z-index: 2;
    color: #fff;
}

.ta-facility-hero-caption span {
    display: block;
    color: var(--ta-gold-light);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .16em;
}

.ta-facility-hero-caption strong {
    font-family: var(--ta-serif);
    font-size: 31px;
    font-weight: 400;
}

.ta-facility-menu {
    display: flex;
    flex-direction: column;
    background: var(--ta-green);
}

.ta-facility-item {
    flex: 1;
    display: grid;
    grid-template-columns: 35px 1fr 20px;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--ta-dark-border);
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: .3s var(--ta-ease);
}

.ta-facility-item:last-child {
    border-bottom: 0;
}

.ta-facility-item > span {
    color: var(--ta-gold-light);
    font-size: 8px;
}

.ta-facility-item strong {
    font-family: var(--ta-serif);
    font-size: 20px;
    font-weight: 400;
}

.ta-facility-item > i {
    color: rgba(255,255,255,.4);
}

.ta-facility-item:hover,
.ta-facility-item.active {
    padding-left: 30px;
    background: var(--ta-green-2);
    color: var(--ta-gold-light);
}


/* =========================================================
   INSIGHTS
========================================================= */

.ta-insights {
    padding: 125px 0;
    background: var(--ta-paper);
}

.ta-insight-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.ta-insight-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s var(--ta-ease);
}

.ta-insight-card.ta-visible {
    opacity: 1;
    transform: translateY(0);
}

.ta-insight-image {
    position: relative;
    height: 325px;
    overflow: hidden;
    background: var(--ta-cream);
}

.ta-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ta-ease);
}

.ta-insight-card a:hover .ta-insight-image img {
    transform: scale(1.05);
}

.ta-insight-image > span {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 50%;
    color: #fff;
    font-size: 8px;
}

.ta-insight-meta {
    margin-top: 18px;
    color: var(--ta-gold);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .16em;
}

.ta-insight-card h3 {
    max-width: 380px;
    margin: 9px 0 15px;
    font-family: var(--ta-serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.ta-insight-read {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ta-green);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}


/* =========================================================
   COMPACT FOOTER CTA
========================================================= */

.ta-footer-cta {
    position: relative;
    min-height: 285px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.ta-footer-cta-image {
    position: absolute;
    inset: 0;
}

.ta-footer-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-footer-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(5,17,11,.93),rgba(5,17,11,.52),rgba(5,17,11,.22));
}

.ta-footer-cta-inner {
    position: relative;
    z-index: 2;
}

.ta-footer-cta-content {
    max-width: 850px;
}

.ta-footer-cta-content h2 {
    margin: 15px 0 17px;
    font-family: var(--ta-serif);
    font-size: clamp(42px,5vw,65px);
    font-weight: 400;
    line-height: .94;
    letter-spacing: -.04em;
}

.ta-footer-cta-content h2 em {
    color: var(--ta-gold-light);
}

.ta-footer-cta-content p {
    max-width: 520px;
    margin: 0 0 23px;
    color: rgba(255,255,255,.62);
    font-size: 11px;
}


/* =========================================================
   COMPACT FOOTER
========================================================= */

.ta-site-footer {
    padding: 60px 0 0;
    overflow: hidden;
    background: var(--ta-green);
    color: #fff;
}

.ta-footer-brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px solid var(--ta-dark-border);
}

.ta-footer-brand {
    max-width: 400px;
}

.ta-footer-logo {
    display: inline-flex;
    width: 135px;
    height: 58px;
    margin-bottom: 15px;
    background: #fff;
}

.ta-footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ta-footer-brand p {
    margin: 0;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    line-height: 1.65;
}

.ta-footer-social {
    display: flex;
    gap: 7px;
    margin-top: 16px;
}

.ta-footer-social a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    color: rgba(255,255,255,.65);
}

.ta-footer-social a:hover {
    background: var(--ta-gold);
    border-color: var(--ta-gold);
    color: var(--ta-green);
}

.ta-footer-signature {
    text-align: right;
}

.ta-footer-signature > span {
    display: block;
    color: rgba(255,255,255,.11);
    font-family: var(--ta-serif);
    font-size: 42px;
    line-height: .8;
}

.ta-footer-signature strong {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 10px;
    color: var(--ta-gold-light);
    font-size: 7px;
    letter-spacing: .18em;
}

.ta-footer-signature i {
    width: 22px;
    height: 1px;
    background: var(--ta-gold-light);
}

.ta-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 35px;
    padding: 42px 0;
    border-bottom: 1px solid var(--ta-dark-border);
}

.ta-footer-column-label {
    margin-bottom: 8px;
    color: var(--ta-gold-light);
    font-size: 7px;
    font-weight: 700;
}

.ta-footer-column h3 {
    margin: 0 0 17px;
    font-family: var(--ta-serif);
    font-size: 20px;
    font-weight: 400;
}

.ta-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ta-footer-column li {
    margin-bottom: 7px;
}

.ta-footer-column li a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.48);
    font-size: 9px;
}

.ta-footer-column li a:hover {
    color: var(--ta-gold-light);
}

.ta-footer-column li a i {
    opacity: 0;
}

.ta-footer-column li a:hover i {
    opacity: 1;
}

.ta-footer-contact-list {
    display: grid;
    gap: 10px;
}

.ta-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: 9px;
}

.ta-footer-contact-item i {
    color: var(--ta-gold-light);
    flex: 0 0 15px;
}

.ta-footer-contact-item:hover {
    color: var(--ta-gold-light);
}

.ta-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 17px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.25);
    color: var(--ta-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}


/* =========================================================
   SMALL FOOTER WORDMARK
========================================================= */
/* =========================================================
   FOOTER WORDMARK — COMPACT
========================================================= */

.ta-footer-wordmark {
    display: none !important;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.ta-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 25px;
    min-height: 62px;
    border-top: 1px solid var(--ta-dark-border);
}

.ta-footer-copyright,
.ta-footer-legal a {
    color: rgba(255,255,255,.32);
    font-size: 8px;
}

.ta-footer-legal {
    display: flex;
    gap: 18px;
}

.ta-footer-legal a:hover {
    color: var(--ta-gold-light);
}

.ta-footer-top {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ta-gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   WHATSAPP + BACK TOP
========================================================= */

.ta-whatsapp {
    position: fixed !important;
    right: 22px !important;
    bottom: 82px !important;
    top: auto !important;
    left: auto !important;
    z-index: 9998 !important;
    display: grid !important;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #25D366;
    color: #fff !important;
    font-size: 27px;
    box-shadow: 0 8px 25px rgba(0,0,0,.22);
    transition: transform .3s ease, box-shadow .3s ease;
}

.ta-whatsapp:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
}

.ta-whatsapp::before,
.ta-whatsapp::after {
    display: none !important;
    content: none !important;
}

.ta-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 17px;
    z-index: 9997;
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    border: 1px solid var(--ta-green);
    border-radius: 50%;
    background: var(--ta-cream);
    color: var(--ta-green);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .3s ease;
}

.ta-back-to-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ta-back-to-top:hover {
    background: var(--ta-gold);
    border-color: var(--ta-gold);
}


/* =========================================================
   RESPONSIVE — 1200
========================================================= */

@media (max-width:1200px) {

    .ta-container {
        width: min(calc(100% - 50px),var(--ta-container));
    }

    .ta-primary-nav {
        gap: 13px;
        margin-right: 15px;
    }

    .ta-primary-nav > a,
    .ta-products-nav > a {
        font-size: 8px;
    }

    .ta-product-mosaic {
        grid-template-rows: 430px 320px;
    }
}


/* =========================================================
   RESPONSIVE — 991
========================================================= */

@media (max-width:991px) {

    .ta-container {
        width: calc(100% - 40px);
    }

    .ta-top-strip {
        display: none;
    }

    .ta-main-nav,
    .ta-header-scrolled .ta-main-nav {
        height: 76px;
    }

    .ta-primary-nav {
        display: none;
    }

    .ta-header-enquire {
        display: none;
    }

    .ta-mobile-toggle {
        display: block;
    }

    .ta-mobile-navigation {
        display: block;
    }

    .ta-brand-box {
        width: 128px;
        height: 57px;
    }

    .ta-product-mega {
        display: none;
    }

    .ta-hero {
        min-height: 720px;
    }

    .ta-hero h1 {
        font-size: clamp(60px,11vw,95px);
    }

    .ta-editorial-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ta-editorial-index {
        flex-direction: row;
        align-items: center;
    }

    .ta-scale-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ta-scale-item:nth-child(2) {
        border-right: 0;
    }

    .ta-scale-item:nth-child(3),
    .ta-scale-item:nth-child(4) {
        border-top: 1px solid var(--ta-dark-border);
    }

    .ta-product-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 450px 350px 350px;
    }

    .ta-mosaic-feature {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .ta-product-mosaic .ta-mosaic-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .ta-product-mosaic .ta-mosaic-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .ta-mosaic-wide {
        grid-column: 1;
        grid-row: 3;
    }

    .ta-mosaic-export {
        grid-column: 2;
        grid-row: 3;
    }

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

    .ta-value-card:nth-child(2) {
        border-right: 0;
    }

    .ta-value-card:nth-child(3),
    .ta-value-card:nth-child(4) {
        border-top: 1px solid var(--ta-border);
    }

    .ta-journey-line {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ta-journey-line::before {
        top: 18px;
        bottom: 18px;
        left: 42px;
        width: 1px;
        height: auto;
    }

    .ta-journey-stage {
        display: grid;
        grid-template-columns: 38px 70px 1fr auto;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .ta-stage-icon {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .ta-facility-home-grid {
        grid-template-columns: 1fr;
    }

    .ta-facility-hero {
        min-height: 440px;
    }

    .ta-facility-menu {
        min-height: 300px;
    }

    .ta-insight-grid {
        gap: 16px;
    }

    .ta-insight-image {
        height: 280px;
    }

    .ta-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ta-footer-contact-column {
        grid-column: 1 / -1;
    }

    .ta-footer-bottom {
        grid-template-columns: 1fr auto;
    }

    .ta-footer-top {
        display: none;
    }
}


/* =========================================================
   RESPONSIVE — 767
========================================================= */

@media (max-width:767px) {

    .ta-container {
        width: calc(100% - 32px);
    }

    .ta-main-nav,
    .ta-header-scrolled .ta-main-nav {
        height: 70px;
    }

    .ta-brand-box {
        width: 115px;
        height: 52px;
    }

    .ta-hero {
        min-height: 680px;
    }

    .ta-hero-inner {
        padding-top: 40px;
    }

    .ta-hero-content {
        padding-top: 20px;
    }

    .ta-hero h1 {
        font-size: clamp(53px,17vw,80px);
    }

    .ta-hero-content > p {
        margin: 24px 0 28px;
        font-size: 12px;
    }

    .ta-hero-actions {
        gap: 17px;
    }

    .ta-hero-link {
        font-size: 8px;
    }

    .ta-hero-meta {
        right: 15px;
        bottom: 20px;
    }

    .ta-scroll {
        bottom: 20px;
    }

    .ta-home-section-heading {
        display: block;
        margin-bottom: 40px;
    }

    .ta-home-section-heading h2 {
        font-size: clamp(40px,12.5vw,62px);
    }

    .ta-home-section-heading .ta-minimal-link {
        margin-top: 22px;
    }

    .ta-editorial-intro,
    .ta-home-products,
    .ta-values,
    .ta-journey-home,
    .ta-home-facility,
    .ta-insights {
        padding: 85px 0;
    }

    .ta-editorial-copy h2 {
        font-size: clamp(41px,12.5vw,63px);
    }

    .ta-editorial-lower {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ta-circle-link {
        justify-self: start;
    }

    .ta-scale {
        padding: 65px 0;
    }

    .ta-scale-intro {
        display: block;
    }

    .ta-scale-intro p {
        margin-top: 15px;
    }

    .ta-scale-item {
        min-height: 170px;
        padding: 18px;
    }

    .ta-scale-item strong {
        margin-bottom: 28px;
    }

    .ta-product-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5,360px);
        gap: 3px;
    }

    .ta-product-mosaic .ta-mosaic-card:nth-child(1),
    .ta-product-mosaic .ta-mosaic-card:nth-child(2),
    .ta-product-mosaic .ta-mosaic-card:nth-child(3),
    .ta-product-mosaic .ta-mosaic-card:nth-child(4),
    .ta-product-mosaic .ta-mosaic-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }

    .ta-mosaic-content h3,
    .ta-mosaic-card:not(.ta-mosaic-feature) .ta-mosaic-content h3 {
        font-size: 35px;
    }

    .ta-cinematic,
    .ta-global-home,
    .ta-home-closing {
        min-height: 570px;
    }

    .ta-cinematic-content h2,
    .ta-global-content h2,
    .ta-closing-content h2 {
        font-size: clamp(46px,14vw,70px);
    }

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

    .ta-value-card,
    .ta-value-card:nth-child(2),
    .ta-value-card:nth-child(3),
    .ta-value-card:nth-child(4) {
        min-height: auto;
        padding: 24px 18px 32px;
        border-left: 1px solid var(--ta-border);
        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid var(--ta-border);
    }

    .ta-value-card > i {
        margin: 35px 0 17px;
    }

    .ta-journey-stage {
        grid-template-columns: 35px 65px 1fr;
        gap: 12px;
    }

    .ta-journey-stage p {
        display: none;
    }

    .ta-journey-line::before {
        left: 30px;
    }

    .ta-stage-icon {
        width: 62px;
        height: 62px;
    }

    .ta-facility-hero {
        min-height: 360px;
    }

    .ta-facility-item {
        grid-template-columns: 28px 1fr 18px;
        padding: 17px;
    }

    .ta-facility-item:hover,
    .ta-facility-item.active {
        padding-left: 22px;
    }

    .ta-facility-item strong {
        font-size: 18px;
    }

    .ta-insight-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ta-insight-image {
        height: 340px;
    }

    .ta-footer-cta {
        min-height: 285px;
    }

    .ta-footer-cta-content h2 {
        font-size: clamp(40px,12vw,60px);
    }

    .ta-site-footer {
        padding-top: 45px;
    }

    .ta-footer-brand-row {
        display: block;
        padding-bottom: 35px;
    }

    .ta-footer-signature {
        margin-top: 35px;
        text-align: left;
    }

    .ta-footer-signature strong {
        justify-content: flex-start;
    }

    .ta-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 22px;
        padding: 35px 0;
    }

    .ta-footer-contact-column {
        grid-column: 1 / -1;
    }

    .ta-footer-wordmark {
        margin: 25px 0 20px;
        font-size: 23vw;
    }

    .ta-footer-bottom {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 17px 0;
    }

    .ta-footer-legal {
        gap: 13px;
    }

    .ta-whatsapp {
        right: 16px !important;
        bottom: 74px !important;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }

    .ta-back-to-top {
        right: 16px;
        bottom: 15px;
        width: 43px;
        height: 43px;
    }

    .ta-mobile-navigation-inner {
        padding-top: 100px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion:reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* =========================================================
   INNER PAGES — SPACE FOR FIXED HEADER
========================================================= */

.ta-body-inner {
    padding-top: 118px;
}

.ta-body-home {
    padding-top: 0;
}
@media (max-width: 991px) {

    .ta-body-inner {
        padding-top: 76px;
    }

}

@media (max-width: 767px) {

    .ta-body-inner {
        padding-top: 70px;
    }

}


/* =========================================================
   TASTY AGRO — FINAL HEADER OVERRIDE
   PREMIUM / CLEAN / ALWAYS VISIBLE
========================================================= */

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.ta-site-header,
.ta-site-header-home,
.ta-site-header-inner {

    position: fixed !important;

    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    width: 100% !important;

    z-index: 10000 !important;

    background: transparent !important;

}


/* ---------------------------------------------------------
   TOP STRIP
--------------------------------------------------------- */

.ta-top-strip {

    height: 34px !important;

    background: #10261d !important;

    color: rgba(255,255,255,.72) !important;

    border-bottom:
        1px solid rgba(255,255,255,.10) !important;

}


/* ---------------------------------------------------------
   MAIN NAV
--------------------------------------------------------- */

.ta-main-nav {

    height: 84px !important;

    background:
        rgba(250,249,245,.98) !important;

    border-bottom:
        1px solid rgba(11,36,25,.10) !important;

    box-shadow:
        0 8px 30px rgba(11,36,25,.06) !important;

    backdrop-filter:
        blur(16px) !important;

    -webkit-backdrop-filter:
        blur(16px) !important;

}


/* ---------------------------------------------------------
   REMOVE DIFFERENT SCROLLED APPEARANCE
--------------------------------------------------------- */

.ta-header-scrolled .ta-main-nav {

    background:
        rgba(250,249,245,.98) !important;

    border-bottom:
        1px solid rgba(11,36,25,.10) !important;

    box-shadow:
        0 8px 30px rgba(11,36,25,.06) !important;

}


/* ---------------------------------------------------------
   NAVIGATION TEXT
--------------------------------------------------------- */

.ta-primary-nav > a,
.ta-products-nav > a {

    color: #0b2419 !important;

}


/* Hover / Active */

.ta-primary-nav > a:hover,
.ta-primary-nav > a.active,
.ta-products-nav > a:hover,
.ta-products-nav > a.active {

    color: #8d713e !important;

}


/* Scrolled state */

.ta-header-scrolled
.ta-primary-nav > a,

.ta-header-scrolled
.ta-products-nav > a {

    color: #0b2419 !important;

}


.ta-header-scrolled
.ta-primary-nav > a:hover,

.ta-header-scrolled
.ta-primary-nav > a.active,

.ta-header-scrolled
.ta-products-nav > a:hover,

.ta-header-scrolled
.ta-products-nav > a.active {

    color: #8d713e !important;

}


/* ---------------------------------------------------------
   ENQUIRE BUTTON
--------------------------------------------------------- */

.ta-header-enquire {

    color: #0b2419 !important;

    border-color:
        rgba(11,36,25,.28) !important;

    background:
        transparent !important;

}


.ta-header-enquire:hover {

    background: #b89a61 !important;

    border-color: #b89a61 !important;

    color: #0b2419 !important;

}


/* Scrolled */

.ta-header-scrolled
.ta-header-enquire {

    color: #0b2419 !important;

    border-color:
        rgba(11,36,25,.28) !important;

}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.ta-brand-box {

    width: 142px !important;

    height: 62px !important;

    background: #ffffff !important;

    overflow: hidden !important;

}


.ta-brand-box img {

    width: 100% !important;

    height: 100% !important;

    object-fit: contain !important;

}


/* ---------------------------------------------------------
   HEADER HEIGHT / PAGE OFFSET
--------------------------------------------------------- */

.ta-body-home {

    padding-top: 118px !important;

}


.ta-body-inner {

    padding-top: 118px !important;

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 991px) {

    .ta-main-nav,
    .ta-header-scrolled .ta-main-nav {

        height: 76px !important;

    }


    .ta-body-home,
    .ta-body-inner {

        padding-top: 76px !important;

    }


    .ta-primary-nav {

        display: none !important;

    }


    .ta-header-enquire {

        display: none !important;

    }


    .ta-mobile-toggle {

        color: #0b2419 !important;

    }


    .ta-header-scrolled
    .ta-mobile-toggle {

        color: #0b2419 !important;

    }

}


@media (max-width: 767px) {

    .ta-main-nav,
    .ta-header-scrolled .ta-main-nav {

        height: 70px !important;

    }


    .ta-body-home,
    .ta-body-inner {

        padding-top: 70px !important;

    }


    .ta-brand-box {

        width: 125px !important;

        height: 55px !important;

    }


    .ta-top-strip {

        height: 30px !important;

    }

}



/* =========================================================
   HERO — PREMIUM FULL WIDTH
========================================================= */

.ta-hero {

    position: relative;

    min-height: calc(100vh - 118px);

    width: 100%;

    overflow: hidden;

}


.ta-hero-media {

    position: absolute;

    inset: 0;

}


.ta-hero-slide {

    position: absolute;

    inset: 0;

    background-position: center center;

    background-size: cover;

    background-repeat: no-repeat;

}


@media (max-width: 991px) {

    .ta-hero {

        min-height:
            calc(100vh - 76px);

    }

}


@media (max-width: 767px) {

    .ta-hero {

        min-height:
            calc(100vh - 70px);

    }

}


/* =========================================================
   TASTY AGRO — FOOTER TYPOGRAPHY UPGRADE
   Larger + brighter + premium
========================================================= */

/* Footer description */
.ta-footer-brand p {
    color: rgba(255,255,255,.88) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    max-width: 430px !important;
}


/* Footer column headings */
.ta-footer-column h3 {
    color: #ffffff !important;
    font-size: 22px !important;
    font-weight: 500 !important;
}


/* 01 / 02 / 03 / 04 */
.ta-footer-column-label {
    color: #d2b878 !important;
    font-size: 11px !important;
    letter-spacing: .16em !important;
}


/* Footer navigation */
.ta-footer-column li a {
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* Footer navigation hover */
.ta-footer-column li a:hover {
    color: #d2b878 !important;
}


/* Contact information */
.ta-footer-contact-item {
    color: rgba(255,255,255,.86) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}


/* Contact icons */
.ta-footer-contact-item i {
    color: #d2b878 !important;
    font-size: 15px !important;
}


/* Contact button */
.ta-footer-contact-link {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}


/* Contact button hover */
.ta-footer-contact-link:hover {
    color: #d2b878 !important;
}


/* Footer signature */
.ta-footer-signature span {
    color: rgba(255,255,255,.90) !important;
    font-size: 13px !important;
    letter-spacing: .22em !important;
}


.ta-footer-signature strong {
    color: rgba(255,255,255,.65) !important;
    font-size: 10px !important;
    letter-spacing: .18em !important;
}


/* Social icons */
.ta-footer-social a {
    color: #ffffff !important;
    border-color: rgba(255,255,255,.30) !important;
}


.ta-footer-social a:hover {
    color: #0b2419 !important;
    background: #d2b878 !important;
    border-color: #d2b878 !important;
}


/* Bottom copyright */
.ta-footer-copyright {
    color: rgba(255,255,255,.72) !important;
    font-size: 12px !important;
}


/* Bottom legal links */
.ta-footer-legal a {
    color: rgba(255,255,255,.72) !important;
    font-size: 12px !important;
}


.ta-footer-legal a:hover {
    color: #d2b878 !important;
}


/* Back to top */
.ta-footer-top {
    color: #ffffff !important;
    font-size: 12px !important;
}


.ta-footer-top:hover {
    color: #d2b878 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ta-footer-brand p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }


    .ta-footer-column h3 {
        font-size: 21px !important;
    }


    .ta-footer-column li a {
        font-size: 14px !important;
    }


    .ta-footer-contact-item {
        font-size: 14px !important;
    }


    .ta-footer-copyright,
    .ta-footer-legal a,
    .ta-footer-top {
        font-size: 11px !important;
    }

}

/* =========================================================
   TASTY AGRO — ABOUT PAGE
   PREMIUM EDITORIAL / LUXURY DESIGN
========================================================= */


/* =========================================================
   ABOUT HERO
========================================================= */

.ta-about-hero {

    position: relative;

    min-height: 650px;

    margin-top: 0;

    overflow: hidden;

    background: #102d22;

}


.ta-about-hero-media {

    position: absolute;

    inset: 0;

}


.ta-about-hero-media img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}


.ta-about-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6,28,20,.82) 0%,
            rgba(6,28,20,.58) 38%,
            rgba(6,28,20,.18) 72%,
            rgba(6,28,20,.12) 100%
        );

}


.ta-about-hero-inner {

    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;

    align-items: flex-end;

    padding-top: 120px;

    padding-bottom: 80px;

}


.ta-about-hero-content {

    max-width: 850px;

    color: #ffffff;

}


.ta-about-hero-content .ta-kicker {

    margin-bottom: 24px;

}


.ta-about-hero-content h1 {

    margin: 0;

    max-width: 850px;

    color: #ffffff;

    font-family: var(--ta-serif);

    font-size: clamp(
        60px,
        8vw,
        118px
    );

    font-weight: 400;

    line-height: .94;

    letter-spacing: -.045em;

}


.ta-about-hero-content h1 em {

    color: #d2b878;

    font-weight: 400;

}


.ta-about-hero-content p {

    max-width: 650px;

    margin: 30px 0 0;

    color: rgba(255,255,255,.82);

    font-size: 18px;

    line-height: 1.7;

}


.ta-about-hero-meta {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 45px;

    color: rgba(255,255,255,.70);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

}


.ta-about-hero-meta i {

    width: 28px;

    height: 1px;

    background: #d2b878;

}


/* =========================================================
   ABOUT INTRO
========================================================= */

.ta-about-intro {

    padding: 140px 0;

    background: #f7f5ee;

}


.ta-about-intro-grid {

    display: grid;

    grid-template-columns:
        minmax(300px,.85fr)
        minmax(400px,1.15fr);

    gap: 100px;

    align-items: start;

}


.ta-about-intro-heading {

    position: sticky;

    top: 150px;

}


.ta-about-intro-heading h2 {

    margin: 22px 0 0;

    max-width: 500px;

    font-family: var(--ta-serif);

    font-size: clamp(
        48px,
        5vw,
        76px
    );

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.04em;

    color: #0b2419;

}


.ta-about-intro-heading h2 em {

    color: #1d6549;

}


.ta-about-intro-copy {

    max-width: 720px;

}


.ta-about-intro-copy p {

    margin: 0 0 26px;

    color: #536058;

    font-size: 16px;

    line-height: 1.9;

}


.ta-about-intro-copy .ta-about-lead {

    margin-bottom: 35px;

    color: #17372a;

    font-family: var(--ta-serif);

    font-size: clamp(
        25px,
        2.5vw,
        36px
    );

    line-height: 1.35;

}


/* =========================================================
   STORY
========================================================= */

.ta-about-story {

    padding: 140px 0;

    background: #ffffff;

}


.ta-about-story-grid {

    display: grid;

    grid-template-columns:
        minmax(400px,1fr)
        minmax(420px,.9fr);

    gap: 100px;

    align-items: center;

}


.ta-about-story-image {

    position: relative;

}


.ta-image-frame {

    position: relative;

    height: 680px;

    overflow: hidden;

    background: #e8e5da;

}


.ta-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(7,31,22,.25)
        );

    pointer-events: none;

}


.ta-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1);

}


.ta-about-story-image:hover
.ta-image-frame img {

    transform: scale(1.035);

}


.ta-image-caption {

    position: absolute;

    right: -1px;

    bottom: -1px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 18px;

    min-width: 260px;

    padding: 22px 28px;

    background: #0b2419;

    color: #ffffff;

}


.ta-image-caption span {

    color: #d2b878;

    font-size: 11px;

    letter-spacing: .15em;

}


.ta-image-caption strong {

    font-size: 10px;

    letter-spacing: .15em;

}


.ta-about-story-content h2 {

    margin: 20px 0 28px;

    font-family: var(--ta-serif);

    font-size: clamp(
        50px,
        5vw,
        82px
    );

    font-weight: 400;

    line-height: .96;

    letter-spacing: -.045em;

    color: #0b2419;

}


.ta-about-story-content h2 em {

    color: #1d6549;

}


.ta-about-story-content > p {

    color: #536058;

    font-size: 15px;

    line-height: 1.8;

}


.ta-about-large-copy {

    max-width: 500px;

    color: #17372a !important;

    font-family: var(--ta-serif);

    font-size: 27px !important;

    line-height: 1.4 !important;

}


.ta-about-capabilities {

    margin-top: 45px;

    border-top:
        1px solid #dcdcd2;

}


.ta-about-capabilities > div {

    display: grid;

    grid-template-columns: 42px 1fr;

    gap: 6px 15px;

    padding: 20px 0;

    border-bottom:
        1px solid #dcdcd2;

}


.ta-about-capabilities span {

    grid-row: span 2;

    color: #b89a61;

    font-size: 10px;

    letter-spacing: .12em;

}


.ta-about-capabilities strong {

    color: #17372a;

    font-size: 14px;

}


.ta-about-capabilities small {

    color: #78817b;

    font-size: 12px;

    line-height: 1.6;

}


/* =========================================================
   VALUES
========================================================= */

.ta-about-values {

    padding: 140px 0;

    background: #102d22;

    color: #ffffff;

}


.ta-about-values-heading {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 75px;

}


.ta-about-values-heading h2 {

    margin: 20px 0 0;

    font-family: var(--ta-serif);

    font-size: clamp(
        50px,
        5vw,
        78px
    );

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.04em;

}


.ta-about-values-heading h2 em {

    color: #d2b878;

}


.ta-about-values-heading > p {

    max-width: 520px;

    margin-left: auto;

    color: rgba(255,255,255,.65);

    font-size: 15px;

    line-height: 1.8;

}


.ta-values-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    border-top:
        1px solid rgba(255,255,255,.16);

    border-left:
        1px solid rgba(255,255,255,.16);

}


.ta-value-card {

    position: relative;

    min-height: 300px;

    padding: 35px;

    border-right:
        1px solid rgba(255,255,255,.16);

    border-bottom:
        1px solid rgba(255,255,255,.16);

    transition:
        background .35s ease,
        transform .35s ease;

}


.ta-value-card:hover {

    background:
        rgba(255,255,255,.045);

    transform:
        translateY(-4px);

}


.ta-value-card > span {

    display: block;

    color: #d2b878;

    font-size: 10px;

    letter-spacing: .15em;

}


.ta-value-card i {

    display: block;

    margin: 48px 0 25px;

    color: #d2b878;

    font-size: 25px;

}


.ta-value-card h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-family: var(--ta-serif);

    font-size: 29px;

    font-weight: 400;

}


.ta-value-card p {

    max-width: 280px;

    margin: 0;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   APPROACH
========================================================= */

.ta-about-approach {

    padding: 140px 0;

    background: #f7f5ee;

}


.ta-about-approach-heading {

    max-width: 800px;

    margin-bottom: 80px;

}


.ta-about-approach-heading h2 {

    margin: 20px 0;

    font-family: var(--ta-serif);

    font-size: clamp(
        50px,
        5vw,
        82px
    );

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.045em;

    color: #0b2419;

}


.ta-about-approach-heading h2 em {

    color: #1d6549;

}


.ta-about-approach-heading p {

    max-width: 570px;

    color: #68716a;

    font-size: 15px;

    line-height: 1.8;

}


.ta-approach-line {

    display: grid;

    grid-template-columns:
        repeat(5,1fr);

    border-top:
        1px solid #cfd2c8;

}


.ta-approach-item {

    position: relative;

    min-height: 310px;

    padding: 30px 28px;

    border-right:
        1px solid #cfd2c8;

}


.ta-approach-item:first-child {

    border-left:
        1px solid #cfd2c8;

}


.ta-approach-number {

    color: #b89a61;

    font-size: 10px;

    letter-spacing: .15em;

}


.ta-approach-item i {

    display: block;

    margin: 60px 0 25px;

    color: #1d6549;

    font-size: 25px;

}


.ta-approach-item h3 {

    margin: 0 0 12px;

    color: #0b2419;

    font-family: var(--ta-serif);

    font-size: 28px;

    font-weight: 400;

}


.ta-approach-item p {

    margin: 0;

    color: #707871;

    font-size: 12px;

    line-height: 1.7;

}


/* =========================================================
   GLOBAL
========================================================= */

.ta-about-global {

    position: relative;

    min-height: 650px;

    overflow: hidden;

    background: #102d22;

}


.ta-about-global-media {

    position: absolute;

    inset: 0;

}


.ta-about-global-media img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.ta-about-global-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,29,20,.88),
            rgba(5,29,20,.48),
            rgba(5,29,20,.18)
        );

}


.ta-about-global .ta-container {

    position: relative;

    z-index: 2;

    min-height: 650px;

    display: flex;

    align-items: center;

}


.ta-about-global-content {

    max-width: 720px;

    color: #ffffff;

}


.ta-about-global-content h2 {

    margin: 22px 0;

    font-family: var(--ta-serif);

    font-size: clamp(
        55px,
        6vw,
        95px
    );

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.045em;

}


.ta-about-global-content h2 em {

    color: #d2b878;

}


.ta-about-global-content p {

    max-width: 600px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.76);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   RESPONSIBILITY
========================================================= */

.ta-about-responsibility {

    padding: 140px 0;

    background: #ffffff;

}


.ta-about-responsibility-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

}


.ta-about-responsibility h2 {

    margin: 22px 0 0;

    font-family: var(--ta-serif);

    font-size: clamp(
        55px,
        5.5vw,
        88px
    );

    font-weight: 400;

    line-height: .94;

    letter-spacing: -.045em;

    color: #0b2419;

}


.ta-about-responsibility h2 em {

    color: #1d6549;

}


.ta-about-responsibility-grid > div:last-child {

    max-width: 650px;

}


.ta-about-responsibility-grid p {

    margin: 0 0 25px;

    color: #68716a;

    font-size: 15px;

    line-height: 1.85;

}


.ta-about-responsibility-grid
.ta-about-lead {

    color: #17372a;

    font-family: var(--ta-serif);

    font-size: 28px;

    line-height: 1.4;

}


.ta-about-text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 15px;

    padding-bottom: 8px;

    border-bottom:
        1px solid #b89a61;

    color: #0b2419;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;

}


.ta-about-text-link:hover {

    color: #b89a61;

}


/* =========================================================
   FINAL CTA
========================================================= */

.ta-about-cta {

    position: relative;

    padding: 120px 30px;

    background: #102d22;

    text-align: center;

    overflow: hidden;

}


.ta-about-cta::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    top: -350px;

    right: -200px;

    border-radius: 50%;

    background:
        rgba(210,184,120,.06);

}


.ta-about-cta-inner {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

}


.ta-about-cta h2 {

    margin: 22px 0;

    color: #ffffff;

    font-family: var(--ta-serif);

    font-size: clamp(
        58px,
        7vw,
        105px
    );

    font-weight: 400;

    line-height: .9;

    letter-spacing: -.05em;

}


.ta-about-cta h2 em {

    color: #d2b878;

}


.ta-about-cta p {

    max-width: 560px;

    margin: 0 auto 35px;

    color: rgba(255,255,255,.65);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .ta-about-hero,
    .ta-about-hero-inner {

        min-height: 560px;

    }


    .ta-about-intro,
    .ta-about-story,
    .ta-about-values,
    .ta-about-approach,
    .ta-about-responsibility {

        padding: 100px 0;

    }


    .ta-about-intro-grid,
    .ta-about-story-grid,
    .ta-about-responsibility-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .ta-about-intro-heading {

        position: static;

    }


    .ta-values-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .ta-approach-line {

        grid-template-columns:
            repeat(2,1fr);

    }


    .ta-approach-item {

        border-bottom:
            1px solid #cfd2c8;

    }

}


@media (max-width: 767px) {

    .ta-about-hero,
    .ta-about-hero-inner {

        min-height: 600px;

    }


    .ta-about-hero-inner {

        padding-top: 100px;

        padding-bottom: 45px;

    }


    .ta-about-hero-content h1 {

        font-size:
            clamp(50px, 15vw, 75px);

    }


    .ta-about-hero-content p {

        font-size: 15px;

    }


    .ta-about-hero-meta {

        flex-wrap: wrap;

        gap: 10px;

        font-size: 8px;

    }


    .ta-about-intro,
    .ta-about-story,
    .ta-about-values,
    .ta-about-approach,
    .ta-about-responsibility {

        padding: 80px 0;

    }


    .ta-about-intro-heading h2,
    .ta-about-story-content h2,
    .ta-about-approach-heading h2 {

        font-size: 50px;

    }


    .ta-image-frame {

        height: 430px;

    }


    .ta-image-caption {

        min-width: 220px;

        padding: 18px 20px;

    }


    .ta-values-grid,
    .ta-approach-line {

        grid-template-columns: 1fr;

    }


    .ta-value-card {

        min-height: 250px;

    }


    .ta-approach-item {

        min-height: 250px;

        border-left:
            1px solid #cfd2c8;

    }


    .ta-about-global,
    .ta-about-global .ta-container {

        min-height: 560px;

    }


    .ta-about-global-content h2 {

        font-size: 55px;

    }


    .ta-about-responsibility-grid
    .ta-about-lead {

        font-size: 24px;

    }


    .ta-about-cta {

        padding: 90px 20px;

    }


    .ta-about-cta h2 {

        font-size: 58px;

    }

}