/* ============================================================
   Kathir Trader — Global stylesheet
   Brand: Sree Kathir Traders  |  Font: Josefin Sans
   ============================================================ */

:root {
    --red:          #ee1c25;
    --red-soft:     #e93646;
    --red-deep:     #ed1d26;
    --ink:          #1a1a1a;
    --ink-body:     #2c2b29;
    --ink-muted:    #4c4546;
    --ink-faint:    #5e5e5e;
    --ink-inverse:  #212529;
    --paper:        #fdfbf7;
    --paper-soft:   #f3f4f5;
    --paper-bar:    #f8f9fa;
    --blush:        #ffebeb;
    --white:        #ffffff;
    --hero-fg:      #e1e3e4;

    --font-sans: 'Josefin Sans', 'Segoe UI', sans-serif;

    --container: 1280px;
    --radius: 6px;
    --shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

p {
    margin: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--red-soft);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(238, 28, 37, 0.32);
}

.btn-soft {
    background: var(--red-soft);
    color: var(--white);
}

.btn-soft:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* ============================================================
   Header / navigation
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--paper-bar);
    box-shadow: 0 1px 0 rgba(26, 26, 26, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-mark {
    height: 52px;
    width: auto;
}

.brand-text {
    height: 32px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-list a {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--red);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

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

.btn-quote {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    font-size: 16px;
    border-radius: var(--radius);
}

.btn-quote:hover {
    background: var(--red-soft);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 656px;
    display: flex;
    align-items: center;
    background-color: var(--paper-soft);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.36));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero__eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--hero-fg);
    margin-bottom: 18px;
}

.hero__title {
    font-size: 88px;
    font-weight: 700;
    line-height: 0.86;
    color: var(--white);
    margin-bottom: 30px;
}

/* ============================================================
   Shared section rhythm
   ============================================================ */
.section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
}

.section-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--ink);
}

.section-tagline {
    font-size: 18px;
    font-weight: 400;
    color: var(--ink-muted);
    margin-top: 6px;
}

.accent-bar {
    width: 48px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 14px 0 0;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    transition: color var(--transition), gap var(--transition);
}

.link-arrow i {
    font-size: 13px;
    transition: transform var(--transition);
}

.link-arrow:hover {
    color: var(--red);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

.link-red {
    font-size: 18px;
    font-weight: 500;
    color: var(--red);
}

.link-red:hover {
    text-decoration: underline;
}

/* ============================================================
   About
   ============================================================ */
.about {
    padding: 96px 0 120px;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__media img {
    border-radius: 50% 50% 8px 8px;
    box-shadow: var(--shadow);
}

.about__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--ink);
}

.about__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink-muted);
    margin: 22px 0 26px;
}

/* ============================================================
   Exclusives
   ============================================================ */
.exclusives {
    position: relative;
    padding: 90px 0;
    background: var(--paper-soft);
    overflow: hidden;
}

.exclusives__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.exclusives__inner {
    position: relative;
    text-align: center;
}

.exclusives__line {
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 600;
    line-height: 1.0;
}

.exclusives__line--muted {
    color: var(--ink);
}

.exclusives__line--red {
    color: var(--red-deep);
    margin-left: 12px;
}

/* ============================================================
   Kathir product highlights
   ============================================================ */
.products-head {
    padding: 96px 0 32px;
    text-align: center;
}

.products-head .section-title {
    font-size: 48px;
}

.highlight {
    padding: 44px 0;
}

.highlight__card {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.highlight__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 34px 40px 22px;
}

.highlight__title {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink-body);
    line-height: 1.2;
}

.highlight__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--ink-body);
    padding: 0 40px 26px;
    max-width: 100%;
}

.btn-viewmore {
    background: var(--red-soft);
    color: var(--white);
    padding: 9px 18px;
    font-size: 17px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.btn-viewmore:hover {
    background: var(--red);
}

.highlight__media {
    position: relative;
}

.highlight__media img.banner {
    width: 100%;
    height: auto;
    display: block;
}

.highlight__caption {
    position: absolute;
    left: 40px;
    top: 36px;
    color: var(--white);
}

.highlight__caption h3 {
    font-size: 44px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.highlight__caption img {
    height: 52px;
    width: auto;
}

.highlight__logos {
    position: absolute;
    right: 40px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight__logos img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.kitchen-thumbs {
    position: absolute;
    right: 40px;
    bottom: 24px;
    display: flex;
    gap: 12px;
}

.kitchen-thumbs img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   Brands
   ============================================================ */
.brands {
    padding: 96px 0 110px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(26, 26, 26, 0.14);
}

.brand-card__media {
    background: var(--paper-soft);
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card__body {
    padding: 18px 22px 22px;
}

.brand-card__cat {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.brand-card__name {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-top: 4px;
}

/* ============================================================
   SKP Mahal (other ventures)
   ============================================================ */
.skp {
    background: var(--blush);
    padding: 88px 0;
}

.skp__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.skp__eyebrow {
    font-size: 18px;
    font-weight: 500;
    color: var(--red);
}

.skp__title {
    font-size: 64px;
    font-weight: 700;
    color: #000;
    margin: 10px 0 18px;
}

.skp__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: #000;
    margin-bottom: 26px;
}

.skp__media img {
    border-radius: 14px;
    box-shadow: var(--shadow);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--paper-bar);
    padding: 56px 0 0;
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
}

.footer-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink-body);
    margin-bottom: 18px;
}

.footer-address {
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink-body);
    max-width: 40ch;
    margin-bottom: 14px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--ink-body);
    margin-bottom: 20px;
}

.footer-links a:hover {
    color: var(--red);
}

.footer-links .sep {
    color: var(--ink-body);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6e6e6;
    color: var(--ink-body);
    font-size: 17px;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

.footer-product-list a {
    font-size: 16px;
    color: var(--ink-inverse);
    transition: color var(--transition);
}

.footer-product-list a:hover {
    color: var(--red);
}

.footer-bottom {
    margin-top: 44px;
    border-top: 1px solid #e6e6e6;
    padding: 22px 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 16px;
    color: var(--ink-body);
}

.footer-bottom a {
    color: var(--ink-body);
}

.footer-bottom a:hover {
    color: var(--red);
}

/* ---- Placeholder pages ---- */
.page-placeholder {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 80px 24px;
}

.page-placeholder h1 {
    font-size: 44px;
}

.page-placeholder p {
    color: var(--ink-muted);
    font-size: 18px;
}

/* ---- Scroll elevation + reveal (progressive enhancement) ---- */
.site-header.is-scrolled {
    box-shadow: 0 4px 18px rgba(26, 26, 26, 0.08);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   Shared page hero (product / listing / enquiry / contact)
   ============================================================ */
.page-hero {
    position: relative;
    padding: 120px 0 116px;
    background: var(--ink);
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.page-hero__inner {
    position: relative;
    z-index: 2;
}

.page-hero__content {
    max-width: 720px;
}

.page-hero__eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 600;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 22px;
}

.page-hero__body {
    font-size: 18px;
    line-height: 1.6;
    color: #ece9e4;
    max-width: 60ch;
    margin-bottom: 30px;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ============================================================
   Buttons (extensions)
   ============================================================ */
.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1fb356;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 11px 24px;
    font-size: 15px;
    border-radius: 10px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   Eyebrow labels
   ============================================================ */
.section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: 10px;
}

.section-eyebrow--light {
    color: #ff9a9f;
}

.section-head--center {
    justify-content: center;
    text-align: center;
}

/* ============================================================
   Product detail — features
   ============================================================ */
.features {
    padding: 72px 0;
    background: var(--paper);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.feature-card {
    background: var(--white);
    border: 0.8px solid #ffe1e1;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.feature-card__dot {
    display: block;
    font-size: 15px;
    color: var(--red-deep);
    margin-bottom: 14px;
}

.feature-card__title {
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.feature-card__text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-muted);
}

/* ============================================================
   Product detail — brands
   ============================================================ */
.prod-brands {
    padding: 72px 0 96px;
}

.brand-block {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 44px 0;
    border-top: 1px solid #eadfd0;
}

.brand-block:last-child {
    border-bottom: 1px solid #eadfd0;
}

.brand-block__logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.brand-block__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1b7f43;
    background: #eafaf0;
    border-radius: 999px;
    padding: 7px 14px;
    margin-bottom: 16px;
}

.brand-block__name {
    font-size: 30px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.brand-block__tagline {
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink-body);
    margin-bottom: 12px;
}

.brand-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-muted);
    margin-bottom: 22px;
}

.brand-block__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.brand-block__lead {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.brand-block__thumbs {
    display: grid;
    gap: 14px;
    align-content: start;
}

.brand-block__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 4 / 3;
}

/* ============================================================
   Product detail — buying guide
   ============================================================ */
.buying-guide {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}

.buying-guide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.buying-guide__overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 21, 18, 0.82);
    z-index: 1;
}

.buying-guide__inner {
    position: relative;
    z-index: 2;
}

.buying-guide__head {
    max-width: 640px;
    margin-bottom: 48px;
}

.buying-guide__title {
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
}

.buying-guide__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    counter-reset: guide;
}

.guide-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 30px 26px;
}

.guide-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red-deep);
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.guide-step__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.guide-step__text {
    font-size: 15px;
    line-height: 1.6;
    color: #d9d4cd;
}

/* ============================================================
   Shared enquiry section (pink)
   ============================================================ */
.enquire {
    background: var(--blush);
    padding: 88px 0;
}

.enquire__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.enquire__title {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.12;
    color: #000;
    margin-bottom: 14px;
}

.enquire__text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
    max-width: 46ch;
    margin-bottom: 24px;
}

.enquire__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.pill--white {
    background: var(--white);
    border: 1px solid #dcdcdc;
    color: #26d367;
}

.pill--blue {
    background: #238dff;
    color: #f7f2ea;
}

.enquire__details {
    margin: 0;
    display: grid;
    gap: 14px;
}

.enquire__detail dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: 2px;
}

.enquire__detail dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.85);
}

.enquire__detail-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.enquire__form-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 36px;
}

.enquire__form-title {
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

/* ============================================================
   Forms (enquiry + contact) — semantic fields
   ============================================================ */
.form__field {
    margin-bottom: 16px;
}

.form__field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
}

.form__field input,
.form__field select,
.form__field textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    background: rgba(247, 242, 234, 0.4);
    border: 0.8px solid #e4dbcb;
    border-radius: 12px;
    padding: 13px 16px;
    transition: border-color var(--transition), background var(--transition);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
    color: rgba(36, 33, 29, 0.5);
}

.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-color: var(--red-deep);
    background: var(--white);
}

.form__field textarea {
    resize: vertical;
    min-height: 108px;
}

.form__field .field-error {
    color: var(--red-deep);
    font-size: 13px;
    margin-top: 6px;
}

/* Honeypot — visually hidden from humans, present for bots */
.form__honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Chip group (enquiry "I am looking for") */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e4dbcb;
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.chip:has(input:checked) {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
}

/* Feedback messages */
.form__message {
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    margin-bottom: 18px;
}

.form__message--error {
    background: #fdeaea;
    border: 1px solid #f5c2c5;
    color: #a5131a;
}

.form__message--success {
    background: #eafaf0;
    border: 1px solid #bcead0;
    color: #1b7f43;
}

/* ============================================================
   About — Our Story
   ============================================================ */
.story {
    padding: 96px 0 80px;
}

.story__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
}

.story__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 24px;
}

.story__text {
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-body);
    margin-bottom: 18px;
}

.story__text strong {
    font-weight: 700;
    color: var(--ink);
}

.story__media {
    position: relative;
}

.story__media img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    width: 100%;
}

.story__badge {
    position: absolute;
    left: -26px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: var(--red-deep);
    color: var(--white);
    text-align: center;
    box-shadow: 0 14px 30px rgba(237, 29, 38, 0.4);
}

.story__badge-num {
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.story__badge-label {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    max-width: 9ch;
    margin-top: 8px;
}

/* ============================================================
   About — Stats
   ============================================================ */
.stats {
    padding: 24px 0 88px;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat__num {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--red-deep);
    line-height: 1;
}

.stat__label {
    display: block;
    font-size: 15px;
    color: var(--ink-muted);
    margin-top: 10px;
}

/* ============================================================
   About — Vision / Mission
   ============================================================ */
.vm {
    padding: 40px 0 88px;
}

.vm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.vm-card {
    background: var(--blush);
    border: 0.8px solid #ffd2d4;
    border-radius: 20px;
    padding: 44px 40px;
}

.vm-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--red-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.vm-card__text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
}

/* ============================================================
   About — Principles
   ============================================================ */
.principles {
    padding: 72px 0 96px;
    background: var(--paper-soft);
}

.principles__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.principle {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.principle__num {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--red-deep);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.principle__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.principle__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-muted);
}

/* ============================================================
   About — Leadership
   ============================================================ */
.leadership {
    padding: 88px 0 96px;
}

.leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.leader {
    margin: 0;
    text-align: center;
}

.leader img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.leader figcaption {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
}

.leader__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.leader__role {
    font-size: 15px;
    color: var(--ink-faint);
    margin-top: 4px;
}

.leadership__caption {
    text-align: center;
    font-size: 16px;
    color: var(--ink-muted);
    margin-top: 28px;
}

/* ============================================================
   About — To Our Clients
   ============================================================ */
.clients {
    padding: 88px 0 96px;
    background: var(--paper-soft);
}

.clients__head {
    max-width: 640px;
    margin-bottom: 40px;
}

.clients__title {
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 12px;
}

.clients__text {
    font-size: 17px;
    color: var(--ink-muted);
}

.clients__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(237, 29, 38, 0.08);
    color: var(--red-deep);
    font-size: 20px;
    margin-bottom: 16px;
}

.value-card__title {
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.value-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-muted);
}

.clients__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ============================================================
   Products listing
   ============================================================ */
.listing {
    padding: 88px 0 110px;
}

.listing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(26, 26, 26, 0.14);
}

.product-card__link {
    display: block;
    height: 100%;
}

.product-card__media {
    background: var(--paper-soft);
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__body {
    padding: 24px 26px 26px;
}

.product-card__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red-deep);
    margin-bottom: 8px;
}

.product-card__name {
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.product-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 18px;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--transition), gap var(--transition);
}

.product-card__cta i {
    font-size: 13px;
    transition: transform var(--transition);
}

.product-card:hover .product-card__cta {
    color: var(--red-deep);
}

.product-card:hover .product-card__cta i {
    transform: translateX(4px);
}

/* ============================================================
   Page hero variants (dark overlay / centered content)
   ============================================================ */
.page-hero__overlay--dark {
    background: rgba(0, 0, 0, 0.59);
}

.page-hero__inner--center {
    align-items: center;
}

.page-hero__content--center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
}

.page-hero__content--center .page-hero__body {
    margin-inline: auto;
}

/* ============================================================
   Contact shell (sidebar + form card)
   ============================================================ */
.contact-shell {
    padding: 88px 0 110px;
}

.contact-shell__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.sidebar {
    background: #FFECEC;
    border-radius: 24px;
    padding: 36px 34px;
}

.sidebar__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.sidebar__sub {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 22px;
}

.sidebar__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.sidebar__list {
    margin: 0;
    border-top: 0.8px solid rgba(255, 247, 235, 0.35);
}

.sidebar__item {
    padding: 16px 0;
    border-bottom: 0.8px solid rgba(255, 247, 235, 0.35);
}

.sidebar__item dt {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red-deep);
    margin-bottom: 4px;
}

.sidebar__item dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.85);
}

/* ============================================================
   Contact cards (Call / WhatsApp / Email)
   ============================================================ */
.contact-cards {
    padding: 88px 0 20px;
}

.contact-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.contact-card {
    background: var(--white);
    border: 0.8px solid #f1ece2;
    border-radius: 20px;
    padding: 34px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(237, 29, 38, 0.08);
    color: var(--red-deep);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card__icon--green {
    background: rgba(37, 211, 102, 0.15);
    color: #1da851;
}

.contact-card__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.contact-card__detail {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin-bottom: 18px;
}

.contact-card__links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card__links a {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
}

.contact-card__links a:hover {
    color: var(--red-deep);
}

/* ============================================================
   Form extras — label-as-text, note, call button, green pill
   ============================================================ */
.form__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
}

.form-note {
    margin-top: 14px;
    text-align: center;
    font-size: 12px;
    color: var(--ink-faint);
}

.btn-call {
    background: #238DFF;
    color: var(--white);
    border: 1px solid #238DFF;
    border-radius: 10px;
    padding: 13px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: filter var(--transition);
}

.btn-call:hover {
    color: var(--white);
    filter: brightness(1.08);
}

.pill--green {
    background: #25D366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    text-decoration: none;
}

.pill--green:hover {
    color: var(--white);
    filter: brightness(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
    border-radius: 10px;
    padding: 13px 24px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
    background: var(--ink);
    color: var(--white);
}

/* ============================================================
   Thank-you page
   ============================================================ */
.thankyou {
    padding: 140px 0 160px;
    text-align: center;
}

.thankyou__box {
    max-width: 560px;
    margin: 0 auto;
}

.thankyou__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: #1da851;
    font-size: 40px;
    margin-bottom: 28px;
}

.thankyou__title {
    font-size: clamp(36px, 5vw, 54px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

.thankyou__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-muted);
    margin-bottom: 32px;
}

.thankyou__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

/* ============================================================
   Legal pages (Terms / Privacy) + compact hero
   ============================================================ */
.page-hero--compact {
    padding: 72px 0;
}

.legal {
    padding: 72px 0 96px;
}

.legal__body {
    max-width: 760px;
}

.legal__updated {
    font-size: 14px;
    color: var(--ink-faint);
    border-bottom: 1px solid #eee7da;
    padding-bottom: 16px;
    margin-bottom: 28px;
}

.legal__body h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin: 32px 0 12px;
}

.legal__body p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-body);
    margin-bottom: 14px;
}

.legal__body a {
    color: var(--red-deep);
    text-decoration: none;
}

.legal__body a:hover {
    text-decoration: underline;
}

/* ============================================================
   404 page
   ============================================================ */
.notfound {
    padding: 140px 0 160px;
    text-align: center;
}

.notfound__code {
    display: block;
    font-size: clamp(72px, 16vw, 160px);
    font-weight: 700;
    line-height: 1;
    color: rgba(237, 29, 38, 0.12);
}

.notfound__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
}

.notfound__text {
    font-size: 17px;
    color: var(--ink-muted);
    max-width: 480px;
    margin: 0 auto 32px;
}

.notfound__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

