/* ASENRA style2 preview: clean editorial, inspired by the supplied mockup. */
body.asenra-style--2 {
    /* ── Màu (tinh chỉnh v2 — giữ bản sắc olive–gold, hiện đại hơn, đạt WCAG) ── */
    --s2-ink: #16170F;
    --s2-text: #3A3B30;
    --s2-muted: #6E6F60;
    --s2-line: rgba(22, 23, 15, .12);
    --s2-line-strong: rgba(22, 23, 15, .2);
    --s2-paper: #ffffff;
    --s2-soft: #F6F4ED;
    --s2-beige: #E9E5DB;
    --s2-olive: #4E5232;
    --s2-olive-dark: #383B22;
    --s2-mist: #eef4f1;
    --s2-gold: #A88B4F;
    --s2-gold-soft: #C9B27E;
    --s2-max: 1320px;

    /* ── Typography (v2 — Fraunces + Be Vietnam Pro) ── */
    --s2-serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
    --s2-sans: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

    /* ── Spacing 4/8pt ── */
    --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
    --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px;
    --s2-section: clamp(44px, 5vw, 70px);
    --s2-gap-grid: 24px;

    /* ── Bo góc / Shadow ── */
    --r-sm: 4px; --r-md: 8px;
    --sh-1: 0 8px 24px rgba(30, 31, 24, .06);
    --sh-2: 0 16px 40px rgba(30, 31, 24, .10);

    /* ── Motion ── */
    --mo-fast: 180ms cubic-bezier(.2, 0, .2, 1);
    --mo-base: 280ms cubic-bezier(.2, 0, .2, 1);

    background: var(--s2-paper);
    color: var(--s2-ink);
}

body.asenra-style--2 h1,
body.asenra-style--2 h2,
body.asenra-style--2 h3 {
    font-family: var(--s2-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
}

body.asenra-style--2 .hdr {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--s2-line);
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

body.asenra-style--2 .hdr__inner {
    max-width: var(--s2-max);
    min-height: 82px;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    padding: 0 clamp(20px, 5vw, 72px);
}

body.asenra-style--2 .hdr__brand {
    order: 1;
    justify-self: start;
    width: clamp(188px, 16vw, 260px);
    height: 64px;
    overflow: visible;
    align-items: center;
}

body.asenra-style--2 .hdr__brand .logo {
    width: 100%;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    transform: none;
}

body.asenra-style--2 .hdr__nav {
    gap: clamp(8px, 1.4vw, 24px);
}

body.asenra-style--2 .hdr__nav--left {
    order: 2;
    justify-content: center;
}

body.asenra-style--2 .hdr__nav--right {
    order: 3;
    justify-content: flex-end;
}

body.asenra-style--2 .hdr__nav a {
    padding: 8px 2px;
    border-radius: 0;
    color: var(--s2-text);
    font-size: 15px;
    font-weight: 500;
    background: transparent;
    transition: color var(--mo-fast);
}

body.asenra-style--2 .hdr__nav a:hover,
body.asenra-style--2 .hdr__nav a.is-active {
    color: var(--s2-olive);
    background: transparent;
}

body.asenra-style--2 .hdr__cta {
    margin-left: var(--s-3);
    padding: 12px 22px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--s2-olive);
    color: #fff;
    border: 1px solid var(--s2-olive);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background var(--mo-base), transform var(--mo-base);
}

body.asenra-style--2 .hdr__cta:hover {
    background: var(--s2-olive-dark);
    transform: translateY(-1px);
}

body.asenra-style--2 .hdr__cta::after {
    content: "→";
    margin-left: 10px;
}

body.asenra-style--2 .hdr__icon {
    display: none;
}

/* ── Header v2: desktop flex — logo trái, gom nav + CTA về phải (sửa "menu hở") ── */
@media (min-width: 901px) {
    body.asenra-style--2 .hdr__inner {
        display: flex;
        align-items: center;
        gap: 0;
        min-height: 72px;
        max-width: var(--s2-max);
        margin: 0 auto;
        padding: 0 clamp(20px, 5vw, 64px);
    }
    body.asenra-style--2 .hdr__brand { order: 1; flex: 0 0 auto; }
    body.asenra-style--2 .hdr__nav--left {
        order: 2;
        margin-left: auto;              /* hút khoảng trống → đẩy cụm nav sang phải, hết "hở" */
        justify-content: flex-end;
        gap: clamp(16px, 1.8vw, 26px);
    }
    body.asenra-style--2 .hdr__nav--right {
        order: 3;
        margin-left: clamp(16px, 1.8vw, 26px);
        gap: clamp(16px, 1.8vw, 26px);
    }
    /* Nav hover: underline trượt trái → phải */
    body.asenra-style--2 .hdr__nav a { position: relative; }
    body.asenra-style--2 .hdr__nav a::after {
        content: "";
        position: absolute;
        left: 0; bottom: 0;
        width: 100%; height: 1px;
        background: var(--s2-olive);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--mo-fast);
    }
    body.asenra-style--2 .hdr__nav a:hover::after,
    body.asenra-style--2 .hdr__nav a.is-active::after { transform: scaleX(1); }
}

.style2-home {
    background:
        linear-gradient(90deg, rgba(238,244,241,.75), transparent 34%),
        var(--s2-paper);
    overflow: hidden;
}

body.asenra-style--2 #style2-services,
body.asenra-style--2 #style2-projects,
body.asenra-style--2 #style2-contact,
body.asenra-style--2 #style2-blog-list,
body.asenra-style--2 #style2-blog-newsletter,
body.asenra-style--2 #style2-package-contact {
    scroll-margin-top: 112px;
}

.style2-hero {
    min-height: clamp(520px, 70vw, 780px);
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(320px, .84fr) minmax(520px, 1.35fr);
    align-items: stretch;
    border-bottom: 1px solid var(--s2-line);
}

.style2-hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    max-width: 650px;
    padding: clamp(54px, 8vw, 112px) clamp(24px, 6vw, 86px);
}

.style2-kicker {
    display: block;
    width: 34px;
    height: 1px;
    margin: 0 0 30px;
    background: var(--s2-olive);
}

.style2-hero h1 {
    margin: 0;
    max-width: 640px;
    color: var(--s2-ink);
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.08;
}

.style2-hero p {
    max-width: 480px;
    margin: 28px 0 0;
    color: var(--s2-text);
    font-size: 16px;
    line-height: 1.75;
}

.style2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.style2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 48px;
    padding: 13px 25px;
    border: 1px solid var(--s2-line-strong);
    border-radius: 0;
    color: var(--s2-ink);
    background: transparent;
    font-family: var(--s2-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.style2-btn:hover {
    transform: translateY(-2px);
    border-color: var(--s2-olive);
}

.style2-btn--dark {
    background: var(--s2-olive);
    border-color: var(--s2-olive);
    color: #fff;
}

.style2-btn--dark:hover {
    background: var(--s2-olive-dark);
    color: #fff;
}

.style2-btn--light {
    background: rgba(255, 255, 255, .94);
    color: var(--s2-ink);
}

.style2-btn--outline {
    background: #fff;
}

.style2-hero__media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.style2-hero__media::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    z-index: 1;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 35%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.style2-hero__media img {
    width: 100%;
    height: 100%;
    min-height: clamp(520px, 70vw, 780px);
    object-fit: cover;
    object-position: center;
}

.style2-expertise,
.style2-about,
.style2-section,
.style2-process,
.style2-social,
.style2-cta,
.style2-footer {
    max-width: var(--s2-max);
    margin: 0 auto;
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
}

.style2-expertise {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding-top: 38px;
    padding-bottom: 38px;
    background: rgba(255,255,255,.82);
    border-bottom: 1px solid var(--s2-line);
}

.style2-expertise article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    align-items: center;
    min-height: 110px;
    padding: 0 clamp(18px, 3vw, 42px);
    border-right: 1px solid var(--s2-line);
}

.style2-expertise article:last-child {
    border-right: 0;
}

.style2-expertise svg,
.style2-values svg,
.style2-process svg,
.style2-stats svg {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: var(--s2-olive);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.style2-expertise h2 {
    margin: 0 0 8px;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
}

.style2-expertise p,
.style2-card p,
.style2-project-grid p,
.style2-process p,
.style2-footer p,
.style2-footer a {
    margin: 0;
    color: var(--s2-text);
    font-size: 15px;
    line-height: 1.7;
}

.style2-about {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(360px, 1.08fr);
    gap: clamp(44px, 7vw, 82px);
    align-items: center;
    padding-top: var(--s2-section);
    padding-bottom: var(--s2-section);
}

.style2-about__media {
    overflow: hidden;
    background: var(--s2-soft);
    border: 1px solid var(--s2-line);
    border-radius: var(--r-md);
}

.style2-about__media img {
    width: 100%;
    aspect-ratio: 1.36 / 1;
    object-fit: cover;
}

.style2-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--s2-olive);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ── Form thu lead trong modal liên hệ ── */
body.asenra-style--2 .contact-form {
    display: grid;
    gap: 10px;
    margin: 18px 0 4px;
}
body.asenra-style--2 .contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
body.asenra-style--2 .contact-form input,
body.asenra-style--2 .contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--s2-line-strong);
    border-radius: var(--r-sm);
    background: #fff;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 15px;
    line-height: 1.5;
    transition: border-color var(--mo-fast), box-shadow var(--mo-fast);
}
body.asenra-style--2 .contact-form textarea {
    resize: vertical;
    min-height: 82px;
}
body.asenra-style--2 .contact-form input::placeholder,
body.asenra-style--2 .contact-form textarea::placeholder {
    color: var(--s2-muted);
}
body.asenra-style--2 .contact-form input:focus,
body.asenra-style--2 .contact-form textarea:focus {
    outline: none;
    border-color: var(--s2-olive);
    box-shadow: 0 0 0 3px rgba(78, 82, 50, .14);
}
body.asenra-style--2 .contact-form__submit {
    margin-top: 2px;
    padding: 13px 18px;
    border: 0;
    border-radius: var(--r-sm);
    background: var(--s2-olive);
    color: #fff;
    font-family: var(--s2-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background var(--mo-base), transform var(--mo-base);
}
body.asenra-style--2 .contact-form__submit:hover {
    background: var(--s2-olive-dark);
    transform: translateY(-1px);
}
body.asenra-style--2 .contact-form__submit:disabled {
    opacity: .6;
    cursor: default;
    transform: none;
}
body.asenra-style--2 .contact-form .form-status {
    margin: 2px 0 0;
    min-height: 18px;
    font-size: 13.5px;
}
body.asenra-style--2 .contact-form__or {
    position: relative;
    text-align: center;
    margin: 16px 0 2px;
}
body.asenra-style--2 .contact-form__or::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 1px;
    background: var(--s2-line);
}
body.asenra-style--2 .contact-form__or span {
    position: relative;
    padding: 0 12px;
    background: var(--bg-card);
    color: var(--s2-muted);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
@media (max-width: 420px) {
    body.asenra-style--2 .contact-form__row { grid-template-columns: 1fr; }
}

.style2-about h2 {
    max-width: 610px;
    margin: 0;
    color: var(--s2-ink);
    font-size: clamp(34px, 4.1vw, 56px);
    line-height: 1.08;
}

.style2-about__copy > p {
    max-width: 660px;
    margin: 22px 0 0;
    color: var(--s2-text);
    font-size: 16px;
    line-height: 1.75;
}

.style2-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--s2-gap-grid);
    margin: 34px 0;
}

.style2-values article {
    min-width: 0;
}

.style2-values svg {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
}

.style2-values h3 {
    margin: 0 0 6px;
    font-family: var(--s2-sans);
    color: var(--s2-ink);
    font-size: 13px;
    font-weight: 800;
}

.style2-values p {
    margin: 0;
    color: var(--s2-text);
    font-size: 12px;
    line-height: 1.55;
}

.style2-section,
.style2-process {
    padding-top: var(--s2-section);
    padding-bottom: var(--s2-section);
}

.style2-section__head {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.style2-section__head span {
    display: none;
}

.style2-section__head h2 {
    margin: 0;
    color: var(--s2-ink);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.12;
    text-align: center;
    text-transform: none;
}

.style2-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--s2-gap-grid);
}

.style2-card {
    background: #fff;
    border: 1px solid var(--s2-line);
    border-radius: var(--r-md);
    box-shadow: var(--sh-1);
    overflow: hidden;
    transition: transform var(--mo-base), box-shadow var(--mo-base);
}

.style2-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-2);
}

/* Mũi tên card: trượt nhẹ khi hover (chỉ báo tương tác) */
.style2-card span {
    transition: transform var(--mo-fast);
}
.style2-card:hover span {
    transform: translateX(4px);
}

.style2-card img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
}

.style2-card div {
    position: relative;
    min-height: 150px;
    padding: 22px 52px 24px 22px;
}

.style2-card h3,
.style2-project-grid h3 {
    margin: 0 0 10px;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.style2-card span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    color: var(--s2-olive);
    font-size: 20px;
}

.style2-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(16px, 3vw, 36px);
    margin: -8px 0 32px;
}

.style2-tabs a {
    color: var(--s2-text);
    font-size: 13px;
}

.style2-tabs a:first-child,
.style2-tabs a:hover {
    color: var(--s2-olive);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.style2-project-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: var(--s2-gap-grid);
}

.style2-project-grid article {
    min-width: 0;
}

.style2-project-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 14px;
    background: var(--s2-soft);
    border-radius: var(--r-md);
}

.style2-project-grid h3 {
    margin-bottom: 4px;
    font-size: 15px;
}

.style2-project-grid p {
    color: var(--s2-muted);
    font-size: 12px;
}

.style2-center-btn {
    margin: 30px auto 0;
    width: fit-content;
}

.style2-process {
    padding-top: 0;
}

.style2-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    position: relative;
}

.style2-process__grid::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 45px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--s2-gold), transparent);
}

.style2-process article {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 12px 14px;
    align-items: center;
    background: #fff;
    padding: 8px 0;
}

.style2-process i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    grid-row: span 3;
    border: 1px solid rgba(183, 160, 106, .55);
    border-radius: 50%;
    background: #fff;
    z-index: 1;
}

.style2-process svg {
    width: 34px;
    height: 34px;
}

.style2-process b {
    color: var(--s2-gold);
    font-size: 14px;
    font-weight: 700;
}

.style2-process h3 {
    margin: -10px 0 0;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 16px;
    font-weight: 700;
}

.style2-process p {
    grid-column: 2;
    font-size: 12px;
}

.style2-social {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: var(--s2-gap-grid);
    padding-top: var(--s2-section);
    padding-bottom: var(--s2-section);
}

.style2-testimonial {
    min-height: 230px;
    padding: 32px 34px;
    background: linear-gradient(180deg, #fff, var(--s2-soft));
    border: 1px solid var(--s2-line);
    border-radius: var(--r-md);
}

.style2-testimonial span {
    display: block;
    margin-bottom: 18px;
    color: var(--s2-olive);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.style2-testimonial blockquote {
    position: relative;
    margin: 0;
    max-width: 560px;
    color: var(--s2-text);
    font-family: var(--s2-serif);
    font-size: clamp(18px, 2vw, 25px);
    line-height: 1.35;
}

.style2-testimonial blockquote::before {
    content: "“";
    display: block;
    color: var(--s2-gold);
    font-size: 48px;
    line-height: .6;
}

.style2-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
}

.style2-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.style2-author strong,
.style2-author small {
    display: block;
}

.style2-author strong {
    color: var(--s2-ink);
    font-size: 14px;
}

.style2-author small {
    color: var(--s2-muted);
    font-size: 12px;
}

.style2-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: linear-gradient(180deg, #fff, var(--s2-soft));
    border: 1px solid var(--s2-line);
    border-radius: var(--r-md);
    overflow: hidden;
}

.style2-stats article {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px;
    text-align: center;
    border-right: 1px solid var(--s2-line);
}

.style2-stats article:last-child {
    border-right: 0;
}

.style2-stats svg {
    width: 34px;
    height: 34px;
    stroke: var(--s2-gold);
}

.style2-stats strong {
    color: var(--s2-ink);
    font-family: var(--s2-serif);
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 400;
    line-height: 1;
}

.style2-stats span {
    color: var(--s2-text);
    font-size: 13px;
}

.style2-cta {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 132px;
    margin-top: 24px;
    margin-bottom: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    color: #fff;
    overflow: hidden;
}

.style2-cta::before {
    content: "";
    position: absolute;
    inset: 0 clamp(20px, 5vw, 64px);
    z-index: 0;
    background: linear-gradient(90deg, rgba(24,22,15,.88), rgba(24,22,15,.55), rgba(24,22,15,.82));
}

.style2-cta img {
    position: absolute;
    inset: 0 clamp(20px, 5vw, 64px);
    width: calc(100% - clamp(40px, 10vw, 128px));
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.style2-cta div,
.style2-cta a {
    position: relative;
    z-index: 1;
}

.style2-cta div {
    padding-left: 34px;
}

.style2-cta h2 {
    max-width: 610px;
    margin: 0;
    color: #fff;
    font-size: clamp(26px, 3.1vw, 42px);
    line-height: 1.06;
}

.style2-cta p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.style2-cta .style2-btn {
    margin-right: 34px;
    min-width: 248px;
}

.style2-footer {
    display: grid;
    grid-template-columns: 1.25fr 1fr .9fr 1.15fr;
    gap: clamp(24px, 4vw, 58px);
    padding-top: 38px;
    padding-bottom: 28px;
    border-top: 1px solid var(--s2-line);
}

.style2-footer__brand img {
    width: min(240px, 100%);
    height: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.style2-footer h3 {
    margin: 0 0 15px;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.style2-footer a {
    display: block;
    padding: 3px 0;
}

.style2-footer__brand a {
    display: inline-flex;
    padding: 0;
}

.style2-footer a:hover {
    color: var(--s2-olive);
}

.style2-newsletter {
    display: flex;
    height: 46px;
    margin-top: 16px;
    border: 1px solid var(--s2-line-strong);
    background: #fff;
}

.style2-newsletter input {
    min-width: 0;
    flex: 1;
    border: 0;
    padding: 0 16px;
    color: var(--s2-ink);
    font: 13px var(--s2-sans);
}

.style2-newsletter input:focus {
    outline: none;
}

.style2-newsletter button {
    width: 54px;
    border: 0;
    background: var(--s2-olive);
    color: #fff;
    cursor: pointer;
}

.style2-footer__copy {
    grid-column: 1 / -1;
    padding-top: 22px;
    border-top: 1px solid var(--s2-line);
    color: var(--s2-muted);
    font-size: 12px;
    text-align: center;
}

body.asenra-style--2 .modal__panel {
    border-radius: 0;
    background: #fff;
}

body.asenra-style--2 .modal__panel ul li {
    border-radius: 0;
    background: var(--s2-soft);
}

body.asenra-style--2 .modal__panel ul li .ico,
body.asenra-style--2 .float-contact .phone {
    background: var(--s2-olive);
}

/* ---------- Style2 sub pages: package + blog ---------- */
.style2-subpage {
    background: #fff;
    color: var(--s2-ink);
}

.style2-subhero {
    position: relative;
    min-height: clamp(440px, 47vw, 620px);
    display: grid;
    align-items: center;
    overflow: hidden;
}

.style2-subhero > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.style2-subhero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.style2-subhero--light::before {
    background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78) 32%, rgba(255,255,255,.08) 72%);
}

.style2-subhero--blog::before {
    background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 29%, rgba(255,255,255,.28) 58%, rgba(255,255,255,0) 100%);
}

.style2-subhero--dark::before {
    background: linear-gradient(90deg, rgba(18,17,14,.78), rgba(18,17,14,.48) 42%, rgba(18,17,14,.16));
}

.style2-subhero > div {
    position: relative;
    z-index: 2;
    max-width: var(--s2-max);
    width: 100%;
    margin: 0 auto;
    padding: clamp(54px, 8vw, 100px) clamp(22px, 5vw, 64px);
}

.style2-subhero h1 {
    max-width: 570px;
    margin: 0;
    color: var(--s2-ink);
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.03;
}

.style2-subhero--dark h1,
.style2-subhero--dark p {
    color: #fff;
}

.style2-subhero p {
    max-width: 460px;
    margin: 22px 0 0;
    color: var(--s2-text);
    font-size: 16px;
    line-height: 1.75;
}

.style2-subhero--blog h1 {
    font-size: clamp(58px, 8vw, 118px);
}

.style2-subhero--blog p {
    max-width: 560px;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.55;
}

.style2-subhero .style2-btn {
    margin-top: 26px;
}

.style2-package-stats,
.style2-package-intro,
.style2-package-plans,
.style2-package-process,
.style2-package-why,
.style2-blog-tools,
.style2-blog-list,
.style2-blog-newsletter {
    max-width: var(--s2-max);
    margin: 0 auto;
    padding-left: clamp(20px, 5vw, 64px);
    padding-right: clamp(20px, 5vw, 64px);
}

.style2-package-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: -58px;
    padding-top: 28px;
    padding-bottom: 28px;
    background: #fff;
    border: 1px solid var(--s2-line);
    box-shadow: 0 20px 45px rgba(32,28,20,.12);
}

.style2-package-stats article {
    min-height: 70px;
    text-align: center;
    border-right: 1px solid var(--s2-line);
}

.style2-package-stats article:last-child {
    border-right: 0;
}

.style2-package-stats strong {
    display: block;
    color: var(--s2-gold);
    font-family: var(--s2-serif);
    font-size: clamp(28px, 3.3vw, 42px);
    font-weight: 400;
    line-height: 1;
}

.style2-package-stats span {
    display: block;
    margin-top: 8px;
    color: var(--s2-text);
    font-size: 12px;
}

.style2-package-title {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.style2-package-title h2 {
    margin: 0;
    color: var(--s2-ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
}

.style2-package-title p {
    margin: 14px 0 0;
    color: var(--s2-text);
    font-size: 15px;
    line-height: 1.75;
}

.style2-package-flow,
.style2-process-line {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.style2-package-flow article,
.style2-process-line article {
    position: relative;
    text-align: center;
}

.style2-package-flow article:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -15px;
    top: 27px;
    color: var(--s2-gold);
}

.style2-package-flow i,
.style2-process-line b {
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(183,160,106,.52);
    border-radius: 50%;
    color: var(--s2-gold);
    background: #fff;
    font-style: normal;
    font-weight: 800;
}

.style2-package-flow h3,
.style2-process-line span {
    display: block;
    margin: 0;
    color: var(--s2-ink);
    font-family: var(--s2-sans);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.style2-package-plans {
    padding-top: clamp(58px, 8vw, 92px);
    padding-bottom: clamp(58px, 8vw, 92px);
    background: linear-gradient(180deg, #fff, var(--s2-soft));
}

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

.style2-plan {
    background: #fff;
    border: 1px solid var(--s2-line);
    overflow: hidden;
}

.style2-plan.is-featured {
    border-color: rgba(183,160,106,.7);
    box-shadow: 0 18px 42px rgba(32,28,20,.1);
}

.style2-plan img {
    width: 100%;
    aspect-ratio: 1.72 / 1;
    object-fit: cover;
}

.style2-plan div {
    padding: 26px 28px;
    text-align: center;
}

.style2-plan h3 {
    margin: 0 0 8px;
    color: var(--s2-gold);
    font-family: var(--s2-sans);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.style2-plan strong {
    display: block;
    color: var(--s2-ink);
    font-family: var(--s2-serif);
    font-size: 24px;
    font-weight: 400;
}

.style2-plan p {
    min-height: 72px;
    margin: 18px 0 0;
    color: var(--s2-text);
    font-size: 13px;
    line-height: 1.65;
}

.style2-plan a {
    display: block;
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid var(--s2-line);
    color: var(--s2-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.style2-package-process {
    padding-top: clamp(58px, 8vw, 92px);
    padding-bottom: clamp(58px, 8vw, 92px);
}

.style2-process-line {
    position: relative;
}

.style2-process-line::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(183,160,106,.6), transparent);
}

.style2-process-line article {
    z-index: 1;
}

.style2-package-why {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(320px, .72fr);
    gap: clamp(30px, 5vw, 62px);
    align-items: center;
    max-width: none;
    padding-top: clamp(58px, 8vw, 92px);
    padding-bottom: clamp(58px, 8vw, 92px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(18,17,14,.94), rgba(18,17,14,.72)),
        url("/uploads/drive-20260610/noi-that/noi-that-01.jpg") center/cover;
}

.style2-package-why > div,
.style2-package-why > aside {
    max-width: calc(var(--s2-max) / 2);
}

.style2-package-why h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: clamp(28px, 3.5vw, 44px);
}

.style2-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
}

.style2-checks span,
.style2-package-why p {
    color: rgba(255,255,255,.84);
    font-size: 14px;
}

.style2-checks span::before {
    content: "✓";
    margin-right: 10px;
    color: var(--s2-gold);
}

.style2-package-why aside {
    padding: 36px;
    background: linear-gradient(135deg, #c99b55, #aa7836);
}

.style2-package-why aside p {
    margin: 0 0 22px;
}

.style2-blog-tools {
    padding-top: 42px;
    padding-bottom: 18px;
}

.style2-blog-tools nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.style2-blog-tools a {
    min-width: 94px;
    padding: 9px 16px;
    border: 1px solid var(--s2-line);
    color: var(--s2-text);
    font-size: 12px;
    text-align: center;
}

.style2-blog-tools a.is-active,
.style2-blog-tools a:hover {
    background: var(--s2-gold);
    border-color: var(--s2-gold);
    color: #fff;
}

.style2-blog-list {
    padding-top: 24px;
    padding-bottom: clamp(58px, 8vw, 92px);
}

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

.style2-post-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--s2-line);
}

.style2-post-card img {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
}

.style2-post-card div {
    flex: 1;
    padding: 24px;
}

.style2-post-card time {
    color: var(--s2-muted);
    font-size: 12px;
}

.style2-post-card h2 {
    margin: 9px 0 10px;
    color: var(--s2-ink);
    font-size: 24px;
    line-height: 1.25;
}

.style2-post-card p {
    margin: 0;
    color: var(--s2-text);
    font-size: 14px;
    line-height: 1.65;
}

.style2-more {
    display: inline-flex;
    margin-top: 20px;
    color: var(--s2-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.style2-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.style2-pagination a,
.style2-pagination span {
    min-width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--s2-line);
    color: var(--s2-text);
    font-size: 13px;
}

.style2-pagination a.is-active {
    background: var(--s2-gold);
    border-color: var(--s2-gold);
    color: #fff;
}

.style2-blog-newsletter {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
    min-height: 160px;
    padding-top: 32px;
    padding-bottom: 32px;
    background: var(--s2-soft);
    border-top: 1px solid var(--s2-line);
}

.style2-blog-newsletter h2 {
    margin: 0;
    color: var(--s2-ink);
    font-size: 30px;
}

.style2-blog-newsletter p {
    margin: 8px 0 0;
    color: var(--s2-text);
    font-size: 13px;
}

.style2-blog-newsletter form {
    display: flex;
    height: 44px;
}

.style2-blog-newsletter input {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--s2-line);
    border-right: 0;
    padding: 0 16px;
    font: 13px var(--s2-sans);
}

.style2-blog-newsletter button {
    width: 112px;
    border: 0;
    background: var(--s2-gold);
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

@media (max-width: 1180px) {
    body.asenra-style--2 .hdr__inner {
        gap: 18px;
        padding-left: 22px;
        padding-right: 22px;
    }

    body.asenra-style--2 .hdr__nav {
        gap: 12px;
    }

    body.asenra-style--2 .hdr__nav a {
        font-size: 12px;
    }

    .style2-hero {
        grid-template-columns: .9fr 1.1fr;
    }

    .style2-service-grid,
    .style2-process__grid,
    .style2-stats,
    .style2-package-stats,
    .style2-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .style2-package-flow,
    .style2-process-line {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .style2-project-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .style2-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .style2-social,
    .style2-footer,
    .style2-package-why,
    .style2-blog-newsletter {
        grid-template-columns: 1fr 1fr;
    }

    .style2-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    body.asenra-style--2 .hdr__inner {
        min-height: 74px;
        grid-template-columns: auto 1fr;
    }

    body.asenra-style--2 .hdr__burger {
        display: inline-flex;
        order: 2;
        grid-column: 2;
        justify-self: end;
    }

    body.asenra-style--2 .hdr__brand {
        order: 1;
        grid-column: 1;
        justify-self: start;
    }

    body.asenra-style--2 .hdr__brand .logo {
        max-height: 50px;
    }

    body.asenra-style--2 .hdr__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 18px 18px;
        background: #fff;
        border-bottom: 1px solid var(--s2-line);
    }

    body.asenra-style--2 .hdr__nav.is-open {
        display: flex;
    }

    body.asenra-style--2 .hdr__nav--left {
        top: 100%;
        transform: none;
    }

    body.asenra-style--2 .hdr__nav--right {
        top: calc(100% + 164px);
        transform: none;
        padding-top: 0;
    }

    body.asenra-style--2 .hdr__nav a {
        padding: 12px 4px !important;
        border-bottom: 1px solid var(--s2-line);
    }

    body.asenra-style--2 .hdr__cta {
        margin: 12px 0 0;
        border-bottom: 0 !important;
    }

    .style2-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .style2-hero__copy {
        max-width: none;
        padding-top: 52px;
        padding-bottom: 40px;
    }

    .style2-hero__media::before {
        display: none;
    }

    .style2-hero__media img {
        min-height: 360px;
        max-height: 520px;
    }

    .style2-expertise,
    .style2-about {
        grid-template-columns: 1fr;
    }

    .style2-expertise article {
        border-right: 0;
        border-bottom: 1px solid var(--s2-line);
        padding: 22px 0;
    }

    .style2-expertise article:last-child {
        border-bottom: 0;
    }

    .style2-about {
        padding-top: 54px;
    }

    .style2-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .style2-process__grid::before {
        display: none;
    }

    .style2-cta {
        grid-template-columns: 1fr;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .style2-cta div {
        padding-left: 24px;
        padding-right: 24px;
    }

    .style2-cta .style2-btn {
        justify-self: start;
        margin: 0 24px;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .style2-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .style2-actions,
    .style2-btn {
        width: 100%;
    }

    .style2-section__head {
        gap: 14px;
    }

    .style2-service-grid,
    .style2-project-grid,
    .style2-process__grid,
    .style2-social,
    .style2-stats,
    .style2-footer,
    .style2-values,
    .style2-package-stats,
    .style2-package-flow,
    .style2-process-line,
    .style2-blog-grid,
    .style2-package-why,
    .style2-blog-newsletter,
    .style2-checks {
        grid-template-columns: 1fr;
    }

    .style2-subhero {
        min-height: 420px;
    }

    .style2-subhero--light::before {
        background: linear-gradient(90deg, rgba(255,255,255,.94), rgba(255,255,255,.58));
    }

    .style2-subhero h1 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .style2-package-stats {
        margin-top: 0;
    }

    .style2-package-stats article {
        border-right: 0;
        border-bottom: 1px solid var(--s2-line);
        padding: 14px 0;
    }

    .style2-package-flow article::after,
    .style2-process-line::before {
        display: none;
    }

    .style2-stats article {
        min-height: 150px;
        border-right: 0;
        border-bottom: 1px solid var(--s2-line);
    }

    .style2-stats article:last-child {
        border-bottom: 0;
    }

    .style2-tabs {
        gap: 14px 24px;
        justify-content: flex-start;
    }

    .style2-section__head h2 {
        font-size: 23px;
    }
}
