/* Tih Press — visit-egypt.xyz
   Classic full BEM, namespace tih-
   Stats-left hero, soft-shadow rounded cards, denim+clay+bone */

:root {
    --clay: #c46a3f;
    --clay-deep: #a8542d;
    --clay-soft: #e8b59a;
    --denim: #3a5a78;
    --denim-deep: #2a4259;
    --denim-soft: #7e9bb5;
    --bone: #fbf7f0;
    --bone-warm: #f2ebdb;
    --umber: #3a2a1f;
    --umber-soft: #5e4a3e;
    --line: #d6cab4;
    --line-soft: #ece3d0;
    --sun: #dca64a;
    --content-max: 1200px;
    --pad: 30px;
    --gap-xs: 10px;
    --gap-s: 18px;
    --gap-m: 32px;
    --gap-l: 56px;
    --gap-xl: 92px;
    --r-btn: 6px;
    --r-card: 14px;
    --shadow-low: 0 6px 22px rgba(58, 42, 31, 0.07);
    --shadow-mid: 0 12px 36px rgba(58, 42, 31, 0.12);
    --shadow-high: 0 22px 56px rgba(58, 42, 31, 0.16);
    --serif: "Crimson Pro", "Crimson Text", "Times New Roman", Georgia, serif;
    --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --mono: Menlo, "DejaVu Sans Mono", Consolas, monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --dur: 210ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.62;
    color: var(--umber);
    background: var(--bone);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--clay-deep);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}
a:hover { color: var(--denim-deep); text-decoration: underline; text-underline-offset: 3px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 3px;
}

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--umber);
    line-height: 1.18;
    letter-spacing: -0.005em;
    margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 3.8vw, 3.3rem); }
h2 { font-size: clamp(1.65rem, 2.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.65vw, 1.42rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
li { margin-bottom: 0.45em; }

/* ============ HELPERS ============ */

.tih-wrap {
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: var(--pad);
}

.tih-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--denim-deep);
    margin-bottom: 16px;
}

.tih-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--clay);
}

/* ============ HEADER ============ */

.tih-header {
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 0;
    z-index: 50;
}

.tih-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
    gap: 24px;
}

.tih-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--serif);
    font-size: 1.34rem;
    font-weight: 700;
    color: var(--umber);
    text-decoration: none;
    letter-spacing: -0.01em;
}
.tih-brand:hover { color: var(--clay-deep); text-decoration: none; }

.tih-brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--denim);
    color: var(--bone);
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
}

.tih-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.tih-nav__list {
    display: flex;
    gap: 22px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tih-nav__link {
    color: var(--umber);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 500;
    padding-block: 6px;
    border-bottom: 2px solid transparent;
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tih-nav__link:hover, .tih-nav__link--active {
    color: var(--clay-deep);
    border-bottom-color: var(--clay);
    text-decoration: none;
}

.tih-burger {
    display: none;
    background: var(--bone-warm);
    border: 1px solid var(--line);
    border-radius: var(--r-btn);
    padding: 9px 14px;
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--umber);
    cursor: pointer;
}

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

.tih-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: var(--r-btn);
    font-family: var(--sans);
    font-size: 0.97rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
    line-height: 1.2;
}
.tih-btn--primary {
    background: var(--clay);
    color: var(--bone);
    border-color: var(--clay);
}
.tih-btn--primary:hover {
    background: var(--clay-deep);
    border-color: var(--clay-deep);
    color: var(--bone);
    text-decoration: none;
    transform: translateY(-1px);
}
.tih-btn--ghost {
    background: transparent;
    color: var(--denim-deep);
    border-color: transparent;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 5px;
    text-decoration-color: var(--clay);
    padding-inline: 0;
}
.tih-btn--ghost:hover {
    color: var(--clay-deep);
    text-decoration-color: var(--denim);
}
.tih-btn--denim {
    background: var(--denim);
    color: var(--bone);
    border-color: var(--denim);
}
.tih-btn--denim:hover {
    background: var(--denim-deep);
    border-color: var(--denim-deep);
    color: var(--bone);
    text-decoration: none;
}

/* ============ HERO (stats-left) ============ */

.tih-hero {
    padding: var(--gap-xl) 0;
    background: linear-gradient(180deg, var(--bone) 0%, var(--bone-warm) 100%);
    position: relative;
    overflow: hidden;
}

.tih-hero__inner {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: var(--gap-l);
    align-items: center;
}

.tih-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tih-hero__stat {
    padding-left: 22px;
    border-left: 3px solid var(--clay);
}

.tih-hero__stat-num {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    color: var(--denim-deep);
    line-height: 1;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.tih-hero__stat-label {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--umber-soft);
    margin-bottom: 6px;
    display: block;
}

.tih-hero__stat-note {
    font-size: 0.94rem;
    color: var(--umber-soft);
    line-height: 1.5;
    margin: 0;
}

.tih-hero__body h1 { margin-bottom: 22px; }

.tih-hero__lead {
    font-size: 1.12rem;
    color: var(--umber-soft);
    margin-bottom: 30px;
    max-width: 620px;
}

.tih-hero__actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.tih-hero__media {
    margin-top: var(--gap-l);
}

.tih-hero__media img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    border-radius: var(--r-card);
    box-shadow: var(--shadow-mid);
}

/* ============ GENERIC SECTION ============ */

.tih-sec { padding: var(--gap-xl) 0; }
.tih-sec--paper { background: var(--bone-warm); }
.tih-sec--denim { background: var(--denim); color: var(--bone); }
.tih-sec--denim h1, .tih-sec--denim h2, .tih-sec--denim h3, .tih-sec--denim h4 { color: var(--bone); }
.tih-sec--denim .tih-eyebrow { color: var(--clay-soft); }
.tih-sec--denim .tih-eyebrow::before { background: var(--clay-soft); }
.tih-sec--clay { background: var(--clay); color: var(--bone); }
.tih-sec--clay h2 { color: var(--bone); }

.tih-sec-head { max-width: 740px; margin-bottom: var(--gap-l); }
.tih-sec-head p { color: var(--umber-soft); font-size: 1.05rem; margin: 0; }
.tih-sec--denim .tih-sec-head p { color: var(--denim-soft); }

/* ============ CARDS — soft-shadow rounded ============ */

.tih-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-m);
}
.tih-cards--two { grid-template-columns: repeat(2, 1fr); }
.tih-cards--four { grid-template-columns: repeat(4, 1fr); gap: var(--gap-s); }

.tih-card {
    background: var(--bone);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-low);
    display: flex;
    flex-direction: column;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tih-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-mid);
}

.tih-card__media {
    aspect-ratio: 4 / 3;
    background: var(--line-soft);
    overflow: hidden;
}
.tih-card__media img { width: 100%; height: 100%; object-fit: cover; }

.tih-card__media--alt { aspect-ratio: 16 / 9; }

.tih-card__body {
    padding: 26px 28px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tih-card__tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay-deep);
    background: var(--bone-warm);
    padding: 4px 11px;
    border-radius: 999px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.tih-card__title { font-size: 1.28rem; margin: 0 0 12px; color: var(--umber); font-weight: 700; }

.tih-card__desc { color: var(--umber-soft); font-size: 0.96rem; margin: 0 0 18px; flex-grow: 1; }

.tih-card__link {
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay-deep);
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    border-bottom: 1px solid var(--clay);
    padding-bottom: 2px;
}
.tih-card__link::after { content: "  \2192"; }
.tih-card__link:hover { color: var(--denim-deep); border-bottom-color: var(--denim); }

/* No-media variant */
.tih-card--plain .tih-card__body { padding-top: 30px; }

/* ============ SPLIT ============ */

.tih-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-l);
    align-items: center;
}

.tih-split__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-card);
    box-shadow: var(--shadow-mid);
}

.tih-split__list {
    list-style: none;
    padding: 0;
    margin: 22px 0 0;
}

.tih-split__list li {
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    color: var(--umber-soft);
    font-size: 0.97rem;
    display: flex;
    gap: 14px;
}

.tih-split__list li:last-child { border-bottom: 0; }

.tih-split__list li::before {
    content: "\25C6";
    color: var(--clay);
    flex-shrink: 0;
    font-size: 0.82em;
    line-height: 1.6;
}

.tih-split__list strong { color: var(--umber); font-weight: 700; }

.tih-sec--denim .tih-split__list li { border-bottom-color: rgba(251, 247, 240, 0.2); color: var(--denim-soft); }
.tih-sec--denim .tih-split__list strong { color: var(--bone); }
.tih-sec--denim .tih-split__list li::before { color: var(--clay-soft); }

/* ============ STEPS ============ */

.tih-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-m);
    counter-reset: tih-step;
}

.tih-step {
    background: var(--bone);
    border-radius: var(--r-card);
    padding: 30px 28px 28px;
    box-shadow: var(--shadow-low);
    position: relative;
    counter-increment: tih-step;
}

.tih-step::before {
    content: "0" counter(tih-step);
    position: absolute;
    top: -18px;
    left: 24px;
    background: var(--clay);
    color: var(--bone);
    font-family: var(--mono);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

.tih-step__title { font-size: 1.16rem; margin: 8px 0 12px; color: var(--umber); }
.tih-step__body { font-size: 0.95rem; color: var(--umber-soft); line-height: 1.65; margin: 0; }

/* ============ STATS BAND ============ */

.tih-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-m);
    padding: 44px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.tih-stats__num {
    font-family: var(--serif);
    font-size: 2.7rem;
    color: var(--clay-deep);
    line-height: 1;
    margin-bottom: 9px;
    display: block;
    font-weight: 600;
}

.tih-stats__label { font-size: 0.92rem; color: var(--umber-soft); line-height: 1.5; }

/* ============ FAQ ============ */

.tih-faq { max-width: 880px; margin: 0; }

.tih-faq__item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}
.tih-faq__item:first-child { border-top: 1px solid var(--line); }

.tih-faq__q {
    font-family: var(--serif);
    font-size: 1.18rem;
    color: var(--umber);
    cursor: pointer;
    list-style: none;
    padding-right: 40px;
    position: relative;
    line-height: 1.4;
    font-weight: 600;
}
.tih-faq__q::-webkit-details-marker { display: none; }

.tih-faq__q::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bone-warm);
    color: var(--clay-deep);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
}
.tih-faq__item[open] .tih-faq__q::after { content: "\2212"; background: var(--clay); color: var(--bone); }

.tih-faq__a {
    margin-top: 14px;
    color: var(--umber-soft);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */

.tih-testi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-m);
}

.tih-testi__item {
    background: var(--bone);
    border-radius: var(--r-card);
    padding: 32px 30px 28px;
    box-shadow: var(--shadow-low);
}

.tih-testi__quote {
    font-family: var(--serif);
    font-size: 1.06rem;
    color: var(--umber);
    line-height: 1.55;
    margin: 0 0 22px;
    font-style: italic;
}
.tih-testi__quote::before {
    content: "\201C";
    display: block;
    font-size: 2.6rem;
    color: var(--clay);
    line-height: 0.4;
    margin-bottom: 16px;
}

.tih-testi__author { font-size: 0.9rem; color: var(--umber-soft); border-top: 1px solid var(--line-soft); padding-top: 14px; }
.tih-testi__author strong { display: block; color: var(--umber); font-weight: 700; font-style: normal; }

/* ============ CTA BAND ============ */

.tih-cta {
    background: var(--denim-deep);
    color: var(--bone);
    padding: 76px 0;
}

.tih-cta__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--gap-m);
    align-items: center;
}

.tih-cta h2 { color: var(--bone); margin-bottom: 10px; font-size: clamp(1.5rem, 2.3vw, 2rem); }
.tih-cta p { color: var(--denim-soft); margin: 0; font-size: 1rem; }

.tih-cta__actions { display: flex; gap: 18px; justify-content: flex-end; flex-wrap: wrap; align-items: center; }
.tih-cta .tih-btn--ghost { color: var(--bone); text-decoration-color: var(--clay-soft); }
.tih-cta .tih-btn--ghost:hover { color: var(--clay-soft); text-decoration-color: var(--bone); }

/* ============ FORMS ============ */

.tih-form {
    background: var(--bone);
    border-radius: var(--r-card);
    padding: 40px 38px 36px;
    box-shadow: var(--shadow-mid);
    max-width: 640px;
}

.tih-form__row { margin-bottom: 20px; }

.tih-form__label {
    display: block;
    font-family: var(--mono);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--denim-deep);
    margin-bottom: 8px;
    font-weight: 600;
}

.tih-form__input, .tih-form__select, .tih-form__textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--sans);
    font-size: 0.98rem;
    color: var(--umber);
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: var(--r-btn);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.tih-form__input:focus, .tih-form__select:focus, .tih-form__textarea:focus {
    outline: none;
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(196, 106, 63, 0.15);
}

.tih-form__textarea { min-height: 140px; resize: vertical; }

.tih-form__check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--umber-soft);
    line-height: 1.55;
}
.tih-form__check input { margin-top: 4px; flex-shrink: 0; }

.tih-form__status {
    margin-top: 18px;
    font-size: 0.94rem;
    color: var(--denim-deep);
    min-height: 1.3em;
}
.tih-form__status[data-state="error"] { color: var(--clay-deep); }

/* ============ TABLE ============ */

.tih-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bone);
    border-radius: var(--r-card);
    overflow: hidden;
    box-shadow: var(--shadow-low);
}

.tih-table th, .tih-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.95rem;
}

.tih-table th {
    background: var(--bone-warm);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--denim-deep);
    font-weight: 700;
}

.tih-table tr:last-child td { border-bottom: 0; }

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

.tih-footer {
    background: var(--umber);
    color: var(--denim-soft);
    padding: 78px 0 32px;
    font-size: 0.94rem;
    line-height: 1.66;
}

.tih-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--gap-l);
    margin-bottom: 52px;
}

.tih-footer__col h4 {
    color: var(--bone);
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 700;
}

.tih-footer__col ul { list-style: none; padding: 0; margin: 0; }
.tih-footer__col li { margin-bottom: 9px; }
.tih-footer__col a { color: var(--denim-soft); text-decoration: none; }
.tih-footer__col a:hover { color: var(--clay-soft); }

.tih-footer__brand p { color: var(--denim-soft); margin-bottom: 16px; }
.tih-footer__brand address {
    font-style: normal;
    color: var(--denim-soft);
    line-height: 1.7;
}

.tih-footer__legal {
    border-top: 1px solid rgba(251, 247, 240, 0.12);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.82rem;
    color: var(--umber-soft);
}

/* ============ PAGE BANNER ============ */

.tih-banner {
    background: var(--bone-warm);
    padding: 82px 0 56px;
    border-bottom: 1px solid var(--line);
}

.tih-banner h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 14px; }
.tih-banner p { color: var(--umber-soft); font-size: 1.05rem; max-width: 780px; margin: 0; }

.tih-crumbs {
    font-family: var(--mono);
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--denim-deep);
    margin-bottom: 20px;
}
.tih-crumbs a { color: var(--denim-deep); text-decoration: none; }
.tih-crumbs a:hover { color: var(--clay-deep); }
.tih-crumbs span[aria-current] { color: var(--clay-deep); }

.tih-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.tih-tags span {
    display: inline-block;
    padding: 5px 14px;
    background: var(--bone);
    color: var(--denim-deep);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* ============ PRICING ============ */

.tih-tier {
    background: var(--bone);
    border-radius: var(--r-card);
    padding: 40px 36px 34px;
    box-shadow: var(--shadow-low);
    display: flex;
    flex-direction: column;
    position: relative;
}
.tih-tier--feat {
    background: var(--umber);
    color: var(--bone);
    box-shadow: var(--shadow-high);
}
.tih-tier--feat h3, .tih-tier--feat .tih-tier__price-num { color: var(--bone); }

.tih-tier__badge {
    position: absolute;
    top: -14px;
    left: 36px;
    background: var(--clay);
    color: var(--bone);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
}

.tih-tier__name {
    font-family: var(--mono);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay-deep);
    margin-bottom: 14px;
}
.tih-tier--feat .tih-tier__name { color: var(--clay-soft); }

.tih-tier__price { font-family: var(--serif); margin-bottom: 8px; }
.tih-tier__price-num { font-size: 2.6rem; color: var(--umber); line-height: 1; font-weight: 700; }
.tih-tier__price-per { font-family: var(--sans); font-size: 0.94rem; color: var(--umber-soft); margin-left: 6px; }
.tih-tier--feat .tih-tier__price-per { color: var(--denim-soft); }

.tih-tier__desc { font-size: 0.96rem; color: var(--umber-soft); margin: 8px 0 24px; }
.tih-tier--feat .tih-tier__desc { color: var(--denim-soft); }

.tih-tier__features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    flex-grow: 1;
}
.tih-tier__features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.94rem;
    display: flex;
    gap: 10px;
}
.tih-tier--feat .tih-tier__features li { border-bottom-color: rgba(251, 247, 240, 0.14); color: var(--denim-soft); }
.tih-tier__features li:last-child { border-bottom: 0; }
.tih-tier__features li::before { content: "\2713"; color: var(--clay); font-weight: 700; flex-shrink: 0; }
.tih-tier--feat .tih-tier__features li::before { color: var(--clay-soft); }
.tih-tier .tih-btn { width: 100%; justify-content: center; }

/* ============ PROSE ============ */

.tih-prose h2 { margin-top: 1.6em; }
.tih-prose h3 { margin-top: 1.4em; }
.tih-prose p { font-size: 1.03rem; color: var(--umber-soft); line-height: 1.74; }
.tih-prose ul li, .tih-prose ol li { color: var(--umber-soft); }
.tih-prose blockquote {
    border-left: 4px solid var(--clay);
    padding: 6px 24px;
    margin: 1.7em 0;
    font-family: var(--serif);
    font-size: 1.18rem;
    font-style: italic;
    color: var(--umber);
}

/* ============ BREAKPOINTS — 1140 / 800 / 520 ============ */

@media (max-width: 1140px) {
    :root { --gap-xl: 72px; --gap-l: 40px; }

    .tih-hero__inner { grid-template-columns: 1fr; gap: var(--gap-m); }
    .tih-hero__stats { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .tih-hero__stat { flex: 1 1 220px; }

    .tih-cards, .tih-testi { grid-template-columns: repeat(2, 1fr); }
    .tih-cards--four { grid-template-columns: repeat(2, 1fr); }
    .tih-steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .tih-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .tih-footer__grid > :nth-child(4) { grid-column: 1 / -1; }
}

@media (max-width: 800px) {
    body { font-size: 16px; }

    .tih-burger { display: inline-flex; }
    .tih-nav { display: none; }
    .tih-nav[data-open="true"] {
        display: flex;
        position: absolute;
        top: 100%;
        right: var(--pad);
        left: var(--pad);
        flex-direction: column;
        align-items: stretch;
        background: var(--bone);
        border: 1px solid var(--line);
        border-radius: var(--r-card);
        padding: 18px 24px;
        box-shadow: var(--shadow-mid);
        gap: 0;
        margin-top: 8px;
    }
    .tih-nav[data-open="true"] .tih-nav__list {
        flex-direction: column;
        width: 100%;
        gap: 4px;
    }
    .tih-nav[data-open="true"] .tih-nav__link {
        padding: 12px 0;
        border-bottom: 1px solid var(--line-soft);
    }
    .tih-nav[data-open="true"] .tih-btn--primary { margin-top: 12px; text-align: center; }

    .tih-stats { grid-template-columns: repeat(2, 1fr); padding: 30px 0; gap: 24px; }
    .tih-split { grid-template-columns: 1fr; gap: var(--gap-m); }
    .tih-split__media { order: -1; }

    .tih-cta__inner { grid-template-columns: 1fr; }
    .tih-cta__actions { justify-content: flex-start; }

    .tih-footer__grid { grid-template-columns: 1fr 1fr; }
    .tih-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    :root { --pad: 22px; --gap-xl: 56px; --gap-l: 30px; --gap-m: 24px; }

    .tih-cards, .tih-testi, .tih-cards--four, .tih-steps { grid-template-columns: 1fr; }
    .tih-stats { grid-template-columns: 1fr; }
    .tih-form { padding: 28px 22px; }
    .tih-footer__grid { grid-template-columns: 1fr; }
    .tih-hero__actions { flex-direction: column; align-items: stretch; }
    .tih-hero__actions .tih-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 2ms !important;
        transition-duration: 2ms !important;
    }
}

@media print {
    .tih-header, .tih-footer, .tih-cta, .tih-burger { display: none; }
    body { background: #fff; color: #000; }
}
