/* =========================================================
   Enter Vietnam — Clean Minimalist Design System
   White background throughout. Orange (#F2811F, from the
   logo) used sparingly as an accent, never as a fill for
   large surfaces. Inter, semibold headings (not black/800),
   hairline borders instead of shadows, generous whitespace.
   Icons are inline SVG (stroke, currentColor) — no emoji.

   Ported from the approved static preview (preview-site/) and
   extended with the WordPress-specific bits (mobile nav open
   state, widgets, pagination, alerts, accessibility helpers)
   the static prototype didn't need.
   ========================================================= */
:root {
  --orange: #F2811F;
  --orange-dark: #D96D0F;
  --orange-tint: #FEF3E8;
  --ink: #1A1D1F;
  --logo-grey: #494949;
  --text: #5B6470;
  --text-soft: #8A929C;
  --line: #EAEAEA;
  --line-soft: #F2F2F2;
  --bg: #FFFFFF;
  --bg-alt: #FAFAF9;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1160px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1.2em; }
.ev-container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.ev-icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }

.ev-eyebrow {
  display: block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

/* ---------- Accessibility helpers ---------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 500;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.ev-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.3;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  background: var(--orange) !important;
  color: #fff !important;
  border: 1px solid var(--orange) !important;
  cursor: pointer;
  text-indent: 0 !important;
  overflow: visible !important;
  white-space: normal !important;
  text-decoration: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
/* Defensive resets, with !important: this site still runs several
   legacy Elementor-era plugins (page builders, form plugins, addon
   libraries) that ship their own generic ".btn"/link-color styles —
   one of them was overriding our button's resting-state text color to
   match its background (text only became visible on hover, once our
   own .ev-btn:hover rule took over). !important guarantees our button
   always renders its label regardless of what else loads on the page. */
.ev-btn:hover, .ev-btn:focus { background: var(--orange-dark) !important; border-color: var(--orange-dark) !important; color: #fff !important; }
.ev-btn-ghost { background: transparent !important; color: var(--ink) !important; border-color: var(--line) !important; }
.ev-btn-ghost:hover, .ev-btn-ghost:focus { border-color: var(--ink) !important; color: var(--ink) !important; background: transparent !important; }
.ev-link-arrow { color: var(--orange); font-weight: 500; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; padding: 0; cursor: pointer; }
.ev-link-arrow:hover { color: var(--orange-dark); }
.ev-link-arrow .ev-icon { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.ev-site-header { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.ev-site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 28px; }
.ev-site-branding, .ev-site-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1.05rem; color: var(--logo-grey); letter-spacing: 0.02em; }
.ev-site-logo { color: var(--logo-grey); }
.ev-site-logo:hover { color: var(--logo-grey); }
.ev-site-logo .mark { width: 30px; height: 30px; object-fit: contain; }
.custom-logo { height: 52px; width: auto; max-width: 100px; object-fit: contain; }
.ev-footer-brand .custom-logo { height: 44px; max-width: 90px; }
.ev-primary-nav ul { display: flex; list-style: none; gap: 36px; margin: 0; padding: 0; }
.ev-primary-nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.ev-primary-nav a:hover, .ev-primary-nav .current-menu-item > a, .ev-primary-nav .current > a { color: var(--ink); }
.ev-header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.ev-header-cta .ev-btn { padding: 9px 18px; font-size: 0.82rem; }
.ev-header-phone { color: var(--text); font-size: 0.78rem; white-space: nowrap; }
.ev-header-phone strong { color: var(--ink); display: block; font-size: 0.88rem; white-space: nowrap; }
.ev-menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 12px; cursor: pointer; color: var(--ink); }
.ev-menu-toggle .ev-icon { width: 20px; height: 20px; }

/* ---------- Section rhythm ---------- */
.ev-section { padding: 96px 0; }
.ev-section-tight { padding: 56px 0; }
.ev-section-alt { background: var(--bg-alt); }
.ev-section-title { max-width: 640px; margin-bottom: 56px; }
.ev-section-title.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Hero: full-bleed photo banner ---------- */
.ev-hero-photo {
  position: relative;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ev-hero-photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ev-hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 22, 24, 0.74) 0%, rgba(20, 22, 24, 0.5) 50%, rgba(20, 22, 24, 0.22) 100%);
}
.ev-hero-photo .ev-container {
  position: relative;
  z-index: 1;
}
.ev-hero-photo-content {
  max-width: 620px;
  padding: 130px 0;
}
.ev-hero-badge {
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ev-hero-photo-content h1 {
  color: #fff;
  margin-bottom: 20px;
}
.ev-hero-photo-content .ev-hero-subtitle {
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
}
.ev-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ev-btn-outline {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid #fff !important;
}
.ev-btn-outline:hover { background: rgba(255, 255, 255, 0.9) !important; }
@media (max-width: 700px) {
  .ev-hero-photo { min-height: 480px; }
  .ev-hero-photo-content { padding: 84px 0; max-width: 100%; }
}

/* ---------- Plain stat row ---------- */
.ev-stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.ev-stat-row .ev-stat {
  padding: 22px 24px;
  border-top: none;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ev-stat-row .ev-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(26, 29, 31, 0.08);
}
.ev-stat-row .ev-stat h4 { font-weight: 600; font-size: 1rem; margin-bottom: 8px; color: var(--ink); }
.ev-stat-row .ev-stat p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* ---------- Split content (mission, alternating rows) ---------- */
.ev-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.ev-split-media .ev-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5/4; background: var(--bg-alt); }
.ev-split-media .ev-frame img { width: 100%; height: 100%; object-fit: cover; }
.ev-value-row { display: flex; gap: 18px; margin-top: 28px; }
.ev-value-row .ev-icon-ring { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--orange); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; background: #fff; }
.ev-value-row .ev-icon-ring .ev-icon { width: 20px; height: 20px; }
.ev-value-row h3 { font-size: 1.02rem; margin-bottom: 4px; }
.ev-value-row p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* ---------- Service cards ---------- */
.ev-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.ev-service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; transition: border-color 0.15s ease, transform 0.15s ease; }
.ev-service-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.ev-service-card .ev-icon-ring { width: 48px; height: 48px; margin-bottom: 22px; }
.ev-service-card .ev-icon-ring .ev-icon { width: 22px; height: 22px; }
.ev-service-card h3 { margin-bottom: 10px; }
.ev-service-card h3 a { color: var(--ink); }
.ev-service-card h3 a:hover { color: var(--orange); }
.ev-service-card p { color: var(--text); font-size: 0.96rem; margin-bottom: 18px; }
.ev-icon-ring { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--orange); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff; }
.ev-icon-ring .ev-icon { width: 20px; height: 20px; }

/* ---------- CTA band ---------- */
.ev-cta-band { background: var(--orange-tint); border-radius: var(--radius); padding: 64px; text-align: center; }
.ev-cta-band h2 { margin-bottom: 14px; }
.ev-cta-band p { color: var(--text); max-width: 520px; margin: 0 auto 28px; }
.ev-cta-band .ev-eyebrow { text-align: center; }

/* ---------- Testimonials ---------- */
.ev-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.ev-testimonial-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; display: flex; flex-direction: column; background: var(--bg); }
.ev-testimonial-mark { color: var(--orange); opacity: 0.35; margin-bottom: 14px; }
.ev-testimonial-mark .ev-icon { width: 30px; height: 30px; }
.ev-testimonial-quote { color: var(--ink); font-size: 1rem; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.ev-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ev-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; flex-shrink: 0; }
.ev-testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.ev-testimonial-company { font-size: 0.85rem; color: var(--text-soft); }

/* ---------- Industry / focus cards ---------- */
.ev-focus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.ev-focus-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: left; }
.ev-focus-card .ev-icon-ring { margin-bottom: 18px; }
.ev-focus-card h3 { font-size: 1rem; margin-bottom: 6px; }
.ev-focus-card p { margin: 0; color: var(--text-soft); font-size: 0.9rem; }

/* ---------- Team grid ---------- */
.ev-team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px 24px; }
.ev-team-card { text-align: left; }
.ev-team-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--orange-tint); width: 88px; margin-bottom: 16px; display:flex; align-items:center; justify-content:center; color: var(--orange); font-weight:600; font-size:1.2rem; letter-spacing:0.02em; }
.ev-team-photo img { width: 100%; height: 100%; object-fit: cover; }
.ev-team-card h3 { font-size: 0.98rem; margin-bottom: 2px; }
.ev-team-card .ev-role { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 10px; }
.ev-team-card .ev-team-links { display: flex; gap: 10px; }
.ev-team-card .ev-team-links a { color: var(--text-soft); font-size: 0.8rem; font-weight: 500; }
.ev-team-card .ev-team-links a:hover { color: var(--orange); }

/* ---------- FAQ accordion (minimal) ---------- */
.ev-faq-list { max-width: 760px; }
.ev-faq-list.ev-faq-list-grouped { margin-bottom: 40px; }
.ev-faq-item { border-bottom: 1px solid var(--line); }
.ev-faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-family: var(--font); font-weight: 500; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ev-faq-question .ev-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; transition: transform 0.15s ease; }
.ev-faq-item.is-open .ev-faq-question .ev-icon { transform: rotate(45deg); }
.ev-faq-item.is-open .ev-faq-question { color: var(--orange); }
.ev-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; color: var(--text); }
.ev-faq-answer p:last-child { margin-bottom: 0; }
.ev-faq-item.is-open .ev-faq-answer { padding-bottom: 22px; }

/* ---------- Blog / content layout ---------- */
.ev-content-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 56px; align-items: start; }
.ev-entry-content { font-size: 1.02rem; color: var(--text); max-width: 760px; }
.ev-content-layout .ev-entry-content { max-width: none; }
.ev-entry-content h2 { margin-top: 1.6em; font-size: 1.5rem; }
.ev-entry-content h3 { margin-top: 1.3em; font-size: 1.2rem; }
.ev-entry-content img { border-radius: var(--radius); margin: 1.5em 0; }
.ev-entry-content ul, .ev-entry-content ol { padding-left: 1.4em; }
.ev-entry-content li { margin-bottom: 0.4em; }
.ev-entry-content blockquote { border-left: 2px solid var(--orange); margin: 1.6em 0; padding: 0.3em 0 0.3em 1.4em; font-style: italic; color: var(--ink); }
.ev-entry-content a { text-decoration: underline; text-underline-offset: 2px; }
.ev-entry-content table { width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: 0.95rem; }
.ev-entry-content th, .ev-entry-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.ev-entry-content th { background: var(--bg-alt); font-weight: 600; color: var(--ink); }
.ev-sidebar-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: sticky; top: 100px; }
.ev-sidebar-box h3 { font-size: 1.02rem; margin-bottom: 8px; }
.ev-sidebar-box p { font-size: 0.92rem; margin-bottom: 18px; }
.ev-sidebar-box .ev-btn { width: 100%; justify-content: center; }
.ev-sidebar-box .ev-share-links { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.ev-post-meta { color: var(--text-soft); font-size: 0.88rem; display: flex; gap: 16px; margin-bottom: 8px; align-items: center; flex-wrap: wrap; }
.ev-post-header { padding: 8px 0 0; }

.ev-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.ev-post-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.15s ease, box-shadow 0.15s ease; background: var(--bg); }
.ev-post-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.ev-post-card .ev-frame { display: block; width: 100%; aspect-ratio: 16/10; background: var(--bg-alt); }
.ev-post-card .ev-frame img { width:100%; height:100%; object-fit:cover; }
.ev-post-card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ev-post-card time { color: var(--text-soft); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.ev-post-card h2 { font-size: 1.1rem; line-height: 1.35; margin: 8px 0 10px; }
.ev-post-card h2 a { color: var(--ink); }
.ev-post-card h2 a:hover { color: var(--orange); }
.ev-post-card p { color: var(--text); font-size: 0.92rem; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.ev-post-card .ev-link-arrow { margin-top: auto; }

/* ---------- Contact ---------- */
.ev-contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.ev-contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ev-contact-card .ev-icon-ring { margin-bottom: 16px; }
.ev-contact-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.ev-contact-card p { margin: 0; color: var(--text); font-size: 0.94rem; }
form.ev-contact-form input, form.ev-contact-form textarea, form.ev-search-form input[type="search"] { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 16px; font-family: var(--font); font-size: 0.96rem; color: var(--ink); }
form.ev-contact-form input:focus, form.ev-contact-form textarea:focus, form.ev-search-form input:focus { outline: none; border-color: var(--orange); }
form.ev-contact-form label { font-weight: 500; display: block; margin-bottom: 6px; color: var(--ink); font-size: 0.88rem; }
.ev-btn-submit { width: 100%; background: var(--orange) !important; border: none !important; color: #fff !important; font-weight: 500; padding: 14px; border-radius: var(--radius-sm); font-size: 0.95rem; cursor: pointer; font-family: var(--font); text-indent: 0 !important; opacity: 1 !important; visibility: visible !important; }
.ev-btn-submit:hover { background: var(--orange-dark) !important; }
.ev-form-notice { padding: 16px 20px; border-radius: var(--radius-sm); margin: 0 0 30px; font-size: 0.94rem; }
.ev-form-notice.success { background: #EAF7EE; color: #1C7A3D; }
.ev-form-notice.error { background: #FDECEC; color: #C0392B; }

/* ---------- Search form ---------- */
form.ev-search-form { display: flex; gap: 12px; max-width: 560px; }
form.ev-search-form input[type="search"] { margin-bottom: 0; }
form.ev-search-form .ev-btn { flex-shrink: 0; }

/* ---------- Page hero (inner pages) ---------- */
.ev-page-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--line); }
.ev-page-hero .ev-hero-breadcrumb { color: var(--text-soft); font-size: 0.88rem; margin-top: 12px; }
.ev-page-hero .ev-hero-breadcrumb a { color: var(--text-soft); }
.ev-page-hero .ev-hero-breadcrumb a:hover { color: var(--orange); }
.ev-page-hero .ev-hero-subtitle { margin-top: 14px; margin-bottom: 0; max-width: 640px; }

/* ---------- Footer ---------- */
.ev-site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 64px 0 0; margin-top: 40px; }
.ev-footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.ev-footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--logo-grey); margin-bottom: 14px; }
.ev-footer-brand .mark { width: 28px; height: 28px; object-fit: contain; }
.ev-footer-brand .custom-logo { height: 44px; width: auto; max-width: 90px; object-fit: contain; }
.ev-footer-col h4 { color: var(--ink); font-weight: 600; font-size: 0.92rem; margin-bottom: 16px; }
.ev-footer-col ul { list-style: none; padding: 0; margin: 0; }
.ev-footer-col li { margin-bottom: 10px; }
.ev-footer-col a { color: var(--text); font-size: 0.92rem; }
.ev-footer-col a:hover { color: var(--orange); }
.ev-footer-social { display: flex; gap: 12px; margin-top: 4px; }
.ev-footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--text); }
.ev-footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.ev-footer-social .ev-icon { width: 16px; height: 16px; }
.ev-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding: 22px 0; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--text-soft); }
.ev-text-center { text-align: center; }

/* ---------- Pagination ---------- */
.ev-pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; justify-content: center; }
.ev-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem; font-weight: 500; }
.ev-pagination .page-numbers.current { background: var(--orange); border-color: var(--orange); color: #fff; }
.ev-pagination .page-numbers:hover:not(.current) { border-color: var(--orange); color: var(--orange); }
.ev-page-links { margin-top: 32px; font-size: 0.9rem; color: var(--text-soft); }
.ev-page-links a { color: var(--orange); margin-left: 6px; }

/* ---------- Widgets ---------- */
.ev-widget { margin-bottom: 36px; }
.ev-widget-title { font-size: 1rem; margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .ev-hero-grid { grid-template-columns: 1fr; }
  .ev-hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .ev-split { grid-template-columns: 1fr; gap: 40px; }
  .ev-content-layout { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .ev-primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); display: none; }
  .ev-primary-nav.is-open { display: block; }
  .ev-primary-nav ul { flex-direction: column; gap: 0; padding: 8px 28px 20px; }
  .ev-primary-nav li { border-top: 1px solid var(--line-soft); }
  .ev-primary-nav li:first-child { border-top: none; }
  .ev-primary-nav a { display: block; padding: 14px 0; }
  .ev-site-header { position: sticky; }
  .ev-site-header-inner { position: relative; flex-wrap: wrap; }
  .ev-menu-toggle { display: block; order: 3; }
  .ev-header-cta .ev-header-phone { display: none; }
  .ev-header-cta .ev-btn { padding: 10px 18px; font-size: 0.88rem; }
}
@media (max-width: 700px) {
  .ev-footer-top { grid-template-columns: 1fr; }
  .ev-section { padding: 64px 0; }
  .ev-cta-band { padding: 40px 24px; }
}
@media (max-width: 560px) {
  .ev-container { padding: 0 20px; }
  form.ev-search-form { flex-direction: column; }
  form.ev-search-form .ev-btn { width: 100%; justify-content: center; }
}
