/* Egypt Visit — .ev-* prefix | Mocha Brown + Turquoise | Roboto Slab + sans */
/* Hard-edge cards, arrow CTA buttons, asymmetric hero, 1320px container */

/* =====================================================================
   ROOT TOKENS
   ===================================================================== */
:root {
    --ev-brown:        #3b2f2a;
    --ev-brown-mid:    #50403a;
    --ev-brown-light:  #7a6560;
    --ev-teal:         #2fa39a;
    --ev-teal-dark:    #1f7a72;
    --ev-teal-light:   #4dc2b8;
    --ev-cream:        #faf7f2;
    --ev-cream-alt:    #f3ede4;
    --ev-cream-dark:   #e8dfd3;
    --ev-ink:          #1e1614;
    --ev-ink-soft:     #3b2f2a;
    --ev-mute:         #9a8880;
    --ev-line:         #d8cfc8;
    --ev-line-strong:  #c0b4aa;
    --ev-ok:           #1f7a72;
    --ev-warn:         #8b2012;

    --ev-radius:       0px;
    --ev-radius-sm:    2px;
    --ev-shadow-sm:    0 1px 4px rgba(30, 22, 20, 0.08);
    --ev-shadow:       0 4px 16px rgba(30, 22, 20, 0.12);
    --ev-shadow-hard:  4px 4px 0 rgba(30, 22, 20, 0.18);

    --ev-container:    1320px;
    --ev-gutter:       28px;

    --ev-font-head:    "Roboto Slab", Rockwell, "Georgia", serif;
    --ev-font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ev-font-mono:    "SF Mono", "Consolas", monospace;
}

/* =====================================================================
   RESET + BASE
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ev-font-body);
    font-size: 1rem;
    line-height: 1.74;
    color: var(--ev-ink);
    background: var(--ev-cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ev-teal); text-decoration: none; }
a:hover { color: var(--ev-teal-dark); text-decoration: underline; }

ul, ol { padding-left: 1.5rem; }

:focus-visible {
    outline: 3px solid var(--ev-teal);
    outline-offset: 3px;
    border-radius: 2px;
}

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ev-font-head);
    color: var(--ev-brown);
    line-height: 1.22;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.ev-eyebrow {
    display: inline-block;
    font-family: var(--ev-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ev-teal);
    margin-bottom: 0.75rem;
}

/* =====================================================================
   LAYOUT
   ===================================================================== */
.ev-container {
    max-width: var(--ev-container);
    margin: 0 auto;
    padding: 0 var(--ev-gutter);
}

.ev-section {
    padding: 88px 0;
}

.ev-section--alt {
    background: var(--ev-cream-alt);
}

.ev-section--dark {
    background: var(--ev-brown);
    color: var(--ev-cream);
}

.ev-section--dark h2,
.ev-section--dark h3 {
    color: var(--ev-cream);
}

.ev-section--dark .ev-eyebrow {
    color: var(--ev-teal-light);
}

.ev-section-head {
    margin-bottom: 52px;
}

.ev-section-head--center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 52px;
}

.ev-section-head__lead {
    margin-top: 0.8rem;
    font-size: 1.05rem;
    color: var(--ev-brown-light);
    max-width: 640px;
}

.ev-section-head--center .ev-section-head__lead {
    margin: 0.8rem auto 0;
}

/* =====================================================================
   BUTTONS
   ===================================================================== */
.ev-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--ev-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.78rem 1.6rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
    text-decoration: none;
    line-height: 1;
    border-radius: var(--ev-radius);
}

.ev-btn--primary {
    background: var(--ev-teal);
    color: #fff;
    border-color: var(--ev-teal);
}
.ev-btn--primary:hover {
    background: var(--ev-teal-dark);
    border-color: var(--ev-teal-dark);
    color: #fff;
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(47, 163, 154, 0.3);
}

.ev-btn--outline {
    background: transparent;
    color: var(--ev-teal);
    border-color: var(--ev-teal);
}
.ev-btn--outline:hover {
    background: var(--ev-teal);
    color: #fff;
    text-decoration: none;
    box-shadow: 4px 4px 0 rgba(47, 163, 154, 0.3);
}

.ev-btn--brown {
    background: var(--ev-brown);
    color: var(--ev-cream);
    border-color: var(--ev-brown);
}
.ev-btn--brown:hover {
    background: var(--ev-brown-mid);
    border-color: var(--ev-brown-mid);
    color: var(--ev-cream);
    text-decoration: none;
}

.ev-btn--ghost {
    background: transparent;
    color: var(--ev-cream);
    border-color: var(--ev-cream);
}
.ev-btn--ghost:hover {
    background: rgba(250,247,242,0.12);
    color: var(--ev-cream);
    text-decoration: none;
}

.ev-btn__arrow {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.18s;
}
.ev-btn:hover .ev-btn__arrow {
    transform: translateX(4px);
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.ev-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--ev-brown);
    border-bottom: 3px solid var(--ev-teal);
    box-shadow: 0 2px 16px rgba(30, 22, 20, 0.22);
}

.ev-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 1.5rem;
}

.ev-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.ev-logo__mark {
    width: 40px;
    height: 40px;
    background: var(--ev-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ev-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.ev-logo__text {
    font-family: var(--ev-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ev-cream);
    line-height: 1.1;
}

.ev-logo__text span {
    display: block;
    font-family: var(--ev-font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ev-teal-light);
    margin-top: 1px;
}

.ev-logo:hover .ev-logo__text { color: var(--ev-cream); text-decoration: none; }

.ev-nav {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ev-nav__link {
    display: block;
    padding: 0.45rem 0.8rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(250,247,242,0.85);
    letter-spacing: 0.03em;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    white-space: nowrap;
    text-decoration: none;
}

.ev-nav__link:hover,
.ev-nav__link--active {
    color: var(--ev-teal-light);
    border-bottom-color: var(--ev-teal-light);
    text-decoration: none;
}

.ev-nav__cta {
    margin-left: 0.6rem;
    padding: 0.48rem 1.1rem;
    font-size: 0.84rem;
}

.ev-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--ev-cream);
    flex-direction: column;
    gap: 5px;
}

.ev-nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ev-cream);
    transition: transform 0.2s, opacity 0.2s;
}

/* =====================================================================
   HERO — ASYMMETRIC COMPOSITION
   ===================================================================== */
.ev-hero {
    position: relative;
    min-height: 580px;
    background: var(--ev-brown);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
}

.ev-hero__bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: 0;
}

.ev-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 0 0;
}

.ev-hero__banner {
    background: rgba(59, 47, 42, 0.6);
    padding: 52px var(--ev-gutter) 40px;
    max-width: 820px;
}

.ev-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ev-teal-light);
    margin-bottom: 1rem;
}

.ev-hero__title {
    font-family: var(--ev-font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 0;
}

.ev-hero__title em {
    font-style: normal;
    color: var(--ev-teal-light);
}

.ev-hero__offset {
    background: var(--ev-teal);
    padding: 36px 48px;
    max-width: 620px;
    margin-top: -1px;
    position: relative;
}

.ev-hero__offset::before {
    content: '';
    position: absolute;
    top: -12px;
    right: 80px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--ev-teal);
}

.ev-hero__lead {
    font-size: 1.07rem;
    color: rgba(255,255,255,0.94);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.ev-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================================
   STATS BAR
   ===================================================================== */
.ev-stats {
    background: var(--ev-brown-mid);
    padding: 28px 0;
    border-bottom: 3px solid var(--ev-teal);
}

.ev-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.ev-stats__item {
    padding: 12px 8px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.ev-stats__item:last-child { border-right: none; }

.ev-stats__num {
    font-family: var(--ev-font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ev-teal-light);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.ev-stats__label {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.7);
}

/* =====================================================================
   CARDS — HARD-EDGE STYLE
   ===================================================================== */
.ev-grid {
    display: grid;
    gap: 0;
}

.ev-grid--3 { grid-template-columns: repeat(3, 1fr); }
.ev-grid--2 { grid-template-columns: repeat(2, 1fr); }
.ev-grid--4 { grid-template-columns: repeat(4, 1fr); }

.ev-card {
    border: 2px solid var(--ev-line);
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.ev-card:hover {
    border-color: var(--ev-teal);
    box-shadow: var(--ev-shadow-hard);
    z-index: 1;
}

.ev-card__media {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--ev-cream-alt);
}

.ev-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.ev-card:hover .ev-card__media img {
    transform: scale(1.03);
}

.ev-card__body {
    padding: 24px;
}

.ev-card__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ev-teal);
    margin-bottom: 0.5rem;
}

.ev-card__title {
    font-family: var(--ev-font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ev-brown);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.ev-card__text {
    font-size: 0.9rem;
    color: var(--ev-brown-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ev-card__link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ev-teal);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.ev-card__link:hover {
    color: var(--ev-teal-dark);
    text-decoration: none;
}

/* Numbered card variant */
.ev-card--numbered .ev-card__num {
    font-family: var(--ev-font-head);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ev-teal);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 0.2rem;
}

/* =====================================================================
   TWO COLUMN SPLIT
   ===================================================================== */
.ev-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ev-split--reverse .ev-split__media {
    order: 2;
}

.ev-split__media {
    position: relative;
}

.ev-split__img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border: 4px solid var(--ev-teal);
}

.ev-split__accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--ev-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    text-align: center;
}

.ev-split__accent-num {
    font-family: var(--ev-font-head);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--ev-teal-light);
    display: block;
    line-height: 1;
}

.ev-split__accent-text {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,247,242,0.7);
    margin-top: 3px;
    display: block;
}

.ev-split__content h2 {
    margin-bottom: 1rem;
}

.ev-split__content p {
    font-size: 1.02rem;
    color: var(--ev-brown-light);
    margin-bottom: 1.2rem;
}

.ev-split__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.ev-split__list li {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--ev-line);
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.96rem;
    color: var(--ev-brown-mid);
}

.ev-split__list li::before {
    content: '▪';
    color: var(--ev-teal);
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* =====================================================================
   HIGHLIGHT BAR / BANNER CTA
   ===================================================================== */
.ev-cta-bar {
    background: var(--ev-teal);
    padding: 64px 0;
}

.ev-cta-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.ev-cta-bar__title {
    font-family: var(--ev-font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.ev-cta-bar__sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.88);
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.ev-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.ev-testimonial {
    border: 2px solid var(--ev-line);
    padding: 32px 28px;
    background: #fff;
    position: relative;
}

.ev-testimonial:not(:last-child) {
    border-right-width: 0;
}

.ev-testimonial::before {
    content: '\201C';
    font-family: var(--ev-font-head);
    font-size: 5rem;
    color: var(--ev-teal);
    opacity: 0.2;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}

.ev-testimonial__text {
    font-size: 0.96rem;
    color: var(--ev-brown-mid);
    line-height: 1.72;
    margin-bottom: 1.2rem;
    padding-top: 1.5rem;
    font-style: italic;
}

.ev-testimonial__author {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ev-brown);
}

.ev-testimonial__origin {
    font-size: 0.78rem;
    color: var(--ev-mute);
}

/* =====================================================================
   ACCORDION / FAQ
   ===================================================================== */
.ev-faq {
    max-width: 860px;
    margin: 0 auto;
}

.ev-faq__item {
    border: 2px solid var(--ev-line);
    margin-bottom: -2px;
    background: #fff;
}

.ev-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--ev-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ev-brown);
    gap: 1rem;
    transition: background 0.15s;
}

.ev-faq__question:hover {
    background: var(--ev-cream-alt);
}

.ev-faq__question[aria-expanded="true"] {
    background: var(--ev-teal);
    color: #fff;
}

.ev-faq__icon {
    font-size: 1.4rem;
    font-weight: 400;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.2s;
}

.ev-faq__question[aria-expanded="true"] .ev-faq__icon {
    transform: rotate(45deg);
}

.ev-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s;
    padding: 0 24px;
}

.ev-faq__answer--open {
    max-height: 800px;
    padding: 20px 24px 28px;
    border-top: 2px solid var(--ev-teal);
}

.ev-faq__answer p {
    font-size: 0.97rem;
    color: var(--ev-brown-light);
    line-height: 1.72;
}

/* =====================================================================
   TABLE
   ===================================================================== */
.ev-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.ev-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.ev-table th {
    background: var(--ev-brown);
    color: var(--ev-cream);
    font-family: var(--ev-font-head);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 16px;
    text-align: left;
    border: 1px solid var(--ev-brown-mid);
}

.ev-table td {
    padding: 13px 16px;
    border: 1px solid var(--ev-line);
    color: var(--ev-brown-mid);
    vertical-align: top;
    line-height: 1.6;
}

.ev-table tr:nth-child(even) td {
    background: var(--ev-cream-alt);
}

.ev-table tr:hover td {
    background: rgba(47, 163, 154, 0.06);
}

.ev-table .ev-check {
    color: var(--ev-teal);
    font-weight: 700;
}

/* =====================================================================
   PRICING CARDS
   ===================================================================== */
.ev-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.ev-pricing-card {
    border: 2px solid var(--ev-line);
    padding: 36px 28px;
    background: #fff;
    position: relative;
    margin-right: -2px;
}

.ev-pricing-card--featured {
    border-color: var(--ev-teal);
    z-index: 2;
    box-shadow: var(--ev-shadow-hard);
}

.ev-pricing-card__badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--ev-teal);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.ev-pricing-card__name {
    font-family: var(--ev-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ev-brown);
    margin-bottom: 0.4rem;
}

.ev-pricing-card__price {
    font-family: var(--ev-font-head);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ev-teal);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.ev-pricing-card__price sup {
    font-size: 1.2rem;
    vertical-align: super;
}

.ev-pricing-card__period {
    font-size: 0.8rem;
    color: var(--ev-mute);
    margin-bottom: 1.5rem;
}

.ev-pricing-card__list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ev-pricing-card__list li {
    padding: 0.52rem 0;
    border-bottom: 1px solid var(--ev-line);
    font-size: 0.9rem;
    color: var(--ev-brown-mid);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.ev-pricing-card__list li .ev-check {
    color: var(--ev-teal);
    font-weight: 700;
    flex-shrink: 0;
}

/* =====================================================================
   TEAM
   ===================================================================== */
.ev-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ev-team-member {
    border: 2px solid var(--ev-line);
    margin-right: -2px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.18s;
}

.ev-team-member:hover {
    border-color: var(--ev-teal);
    z-index: 1;
}

.ev-team-member__photo {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.ev-team-member__info {
    padding: 20px;
    border-top: 3px solid var(--ev-teal);
}

.ev-team-member__name {
    font-family: var(--ev-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ev-brown);
    margin-bottom: 0.2rem;
}

.ev-team-member__role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ev-teal);
    margin-bottom: 0.8rem;
}

.ev-team-member__bio {
    font-size: 0.88rem;
    color: var(--ev-brown-light);
    line-height: 1.6;
}

/* =====================================================================
   BREADCRUMB
   ===================================================================== */
.ev-breadcrumb {
    background: var(--ev-brown-mid);
    padding: 14px 0;
}

.ev-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.ev-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(250,247,242,0.65);
}

.ev-breadcrumb__item::after {
    content: '›';
    color: rgba(250,247,242,0.3);
}

.ev-breadcrumb__item:last-child::after { display: none; }

.ev-breadcrumb__link {
    color: var(--ev-teal-light);
    text-decoration: none;
    font-weight: 600;
}

.ev-breadcrumb__link:hover { text-decoration: underline; }

.ev-breadcrumb__current { color: rgba(250,247,242,0.85); }

/* =====================================================================
   PAGE HERO (inner pages)
   ===================================================================== */
.ev-page-hero {
    background: var(--ev-brown);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.ev-page-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: linear-gradient(135deg, transparent 0%, rgba(47,163,154,0.12) 100%);
    pointer-events: none;
}

.ev-page-hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ev-teal-light);
    margin-bottom: 0.75rem;
}

.ev-page-hero__title {
    font-family: var(--ev-font-head);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.ev-page-hero__lead {
    font-size: 1.06rem;
    color: rgba(250,247,242,0.8);
    max-width: 640px;
    line-height: 1.65;
}

/* =====================================================================
   FORM
   ===================================================================== */
.ev-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ev-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ev-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ev-field__label {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--ev-brown);
    letter-spacing: 0.04em;
}

.ev-field__input,
.ev-field__select,
.ev-field__textarea {
    width: 100%;
    padding: 0.72rem 0.95rem;
    font-family: var(--ev-font-body);
    font-size: 0.96rem;
    color: var(--ev-ink);
    background: #fff;
    border: 2px solid var(--ev-line);
    border-radius: var(--ev-radius-sm);
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
}

.ev-field__input:focus,
.ev-field__select:focus,
.ev-field__textarea:focus {
    border-color: var(--ev-teal);
    box-shadow: 0 0 0 3px rgba(47, 163, 154, 0.15);
    outline: none;
}

.ev-field__textarea {
    resize: vertical;
    min-height: 120px;
}

.ev-field__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233b2f2a'%3E%3Cpath d='M8 11L2 5h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2.5rem;
}

.ev-form__consent {
    font-size: 0.82rem;
    color: var(--ev-brown-light);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.ev-form__consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--ev-teal);
    width: 16px;
    height: 16px;
}

.ev-form__status {
    padding: 1rem;
    border: 2px solid var(--ev-teal);
    background: rgba(47,163,154,0.06);
    font-weight: 600;
    color: var(--ev-teal-dark);
    display: none;
}

.ev-form__status--visible { display: block; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.ev-footer {
    background: var(--ev-brown);
    border-top: 3px solid var(--ev-teal);
    padding: 64px 0 0;
    color: rgba(250,247,242,0.75);
}

.ev-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ev-footer__brand h3 {
    font-family: var(--ev-font-head);
    font-size: 1.2rem;
    color: var(--ev-cream);
    margin-bottom: 0.75rem;
}

.ev-footer__brand p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(250,247,242,0.65);
    margin-bottom: 1.2rem;
}

.ev-footer__col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ev-teal-light);
    margin-bottom: 1rem;
}

.ev-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ev-footer__links li {
    margin-bottom: 0.5rem;
}

.ev-footer__links a {
    font-size: 0.88rem;
    color: rgba(250,247,242,0.65);
    text-decoration: none;
    transition: color 0.15s;
}

.ev-footer__links a:hover {
    color: var(--ev-teal-light);
    text-decoration: none;
}

.ev-footer__address {
    font-style: normal;
    font-size: 0.84rem;
    line-height: 1.75;
    color: rgba(250,247,242,0.65);
}

.ev-footer__address strong {
    color: var(--ev-cream);
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.88rem;
}

.ev-footer__bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.ev-footer__copy {
    font-size: 0.8rem;
    color: rgba(250,247,242,0.45);
}

.ev-footer__legal-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ev-footer__legal-links a {
    font-size: 0.8rem;
    color: rgba(250,247,242,0.45);
    text-decoration: none;
}

.ev-footer__legal-links a:hover {
    color: var(--ev-teal-light);
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.ev-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: start;
}

.ev-info-block {
    padding: 32px 28px;
    border: 2px solid var(--ev-line);
    background: #fff;
    margin-bottom: 0;
}

.ev-info-block h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--ev-brown);
}

.ev-info-block p,
.ev-info-block address {
    font-size: 0.92rem;
    color: var(--ev-brown-light);
    line-height: 1.7;
    font-style: normal;
}

.ev-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ev-info-blocks .ev-info-block {
    margin-bottom: -2px;
}

/* =====================================================================
   ABOUT PAGE — TIMELINE
   ===================================================================== */
.ev-timeline {
    position: relative;
    padding-left: 40px;
}

.ev-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: linear-gradient(to bottom, var(--ev-teal), var(--ev-brown));
}

.ev-timeline__item {
    position: relative;
    padding-bottom: 36px;
}

.ev-timeline__dot {
    position: absolute;
    left: -48px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--ev-teal);
    border: 3px solid var(--ev-cream);
    box-shadow: 0 0 0 2px var(--ev-teal);
}

.ev-timeline__year {
    font-family: var(--ev-font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ev-teal);
    margin-bottom: 0.3rem;
}

.ev-timeline__title {
    font-family: var(--ev-font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ev-brown);
    margin-bottom: 0.4rem;
}

.ev-timeline__text {
    font-size: 0.93rem;
    color: var(--ev-brown-light);
    line-height: 1.65;
}

/* =====================================================================
   SERVICES PAGE
   ===================================================================== */
.ev-service-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0;
    border: 2px solid var(--ev-line);
    margin-bottom: -2px;
    background: #fff;
    transition: border-color 0.18s;
}

.ev-service-row:hover {
    border-color: var(--ev-teal);
    z-index: 1;
}

.ev-service-row__thumb {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.ev-service-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-service-row__content {
    padding: 28px 32px;
    border-left: 2px solid var(--ev-line);
}

.ev-service-row__tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ev-teal);
    margin-bottom: 0.4rem;
}

.ev-service-row__title {
    font-family: var(--ev-font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ev-brown);
    margin-bottom: 0.6rem;
}

.ev-service-row__desc {
    font-size: 0.93rem;
    color: var(--ev-brown-light);
    line-height: 1.68;
    margin-bottom: 1rem;
}

/* =====================================================================
   THANK YOU PAGE
   ===================================================================== */
.ev-thanks {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 88px 0;
}

.ev-thanks__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.ev-thanks__icon {
    width: 80px;
    height: 80px;
    background: var(--ev-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.ev-thanks__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ev-brown);
    margin-bottom: 1rem;
}

.ev-thanks__text {
    font-size: 1.05rem;
    color: var(--ev-brown-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* =====================================================================
   BADGE / MISC
   ===================================================================== */
.ev-badge {
    display: inline-block;
    background: var(--ev-teal);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
}

.ev-highlight {
    background: var(--ev-teal);
    color: #fff;
    padding: 2px 6px;
}

.ev-divider {
    border: none;
    border-top: 2px solid var(--ev-line);
    margin: 2.5rem 0;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 900px) {
    .ev-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .ev-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .ev-split { grid-template-columns: 1fr; gap: 40px; }
    .ev-split__img { height: 300px; }
    .ev-split__accent { display: none; }
    .ev-split--reverse .ev-split__media { order: 0; }
    .ev-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .ev-pricing-grid { grid-template-columns: 1fr; }
    .ev-pricing-card { margin-right: 0; margin-bottom: -2px; }
    .ev-contact-layout { grid-template-columns: 1fr; }
    .ev-testimonials { grid-template-columns: 1fr; }
    .ev-testimonial:not(:last-child) { border-right-width: 2px; border-bottom-width: 0; }
    .ev-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ev-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ev-service-row { grid-template-columns: 1fr; }
    .ev-service-row__thumb { aspect-ratio: 16/6; }
    .ev-service-row__content { border-left: none; border-top: 2px solid var(--ev-line); }
    .ev-hero__offset { max-width: 100%; padding: 28px 24px; }
    .ev-hero__offset::before { display: none; }
}

@media (max-width: 720px) {
    .ev-section { padding: 60px 0; }
    .ev-grid--3 { grid-template-columns: 1fr; }
    .ev-grid--2 { grid-template-columns: 1fr; }
    .ev-form__row { grid-template-columns: 1fr; }
    .ev-cta-bar__inner { flex-direction: column; align-items: flex-start; }
    .ev-footer__grid { grid-template-columns: 1fr; }
    .ev-team-grid { grid-template-columns: repeat(2, 1fr); }
    .ev-nav { display: none; flex-direction: column; align-items: flex-start; position: absolute; top: 68px; left: 0; right: 0; background: var(--ev-brown); border-top: 2px solid var(--ev-teal); padding: 1rem 0; }
    .ev-nav--open { display: flex; }
    .ev-nav__link { padding: 0.7rem 1.5rem; border-bottom: none; width: 100%; }
    .ev-nav__cta { margin: 0.5rem 1.5rem; }
    .ev-nav-toggle { display: flex; }
    .ev-header { position: relative; }
}

@media (max-width: 480px) {
    .ev-hero__banner { padding: 40px 20px 28px; }
    .ev-hero__title { font-size: clamp(1.9rem, 7vw, 2.8rem); }
    .ev-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .ev-team-grid { grid-template-columns: 1fr; }
    .ev-footer__bottom { flex-direction: column; }
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
