/* ============================================================
   style.css — Mahana  (pixel-faithful)
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #F7941D;
  --orange-hover: #E07A00;
  --navy:         #0D1B4B;
  --navy-mid:     #1A2D6B;
  --white:        #FFFFFF;
  --bg-light:     #F5F6FA;
  --text-dark:    #1A202C;
  --text-body:    #6B7280;
  --text-muted:   #9CA3AF;
  --border:       #E5E7EB;
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow-card:  0 2px 12px rgba(0,0,0,.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.12);
  /* fonts */
  --font-head: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max:       1160px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: #fff;
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 15.5px; letter-spacing: .1px;
  transition: all .18s ease; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-orange  { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-hover); box-shadow: 0 6px 20px rgba(247,148,29,.4); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.1); }

/* ── Eyebrow ── */
.eyebrow {
  display: block; font-size: 14.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}

/* ── Section title ── */
.sec-h2 {
  font-family: var(--font-head);
  font-weight: 800; font-size: clamp(28px,3vw,38px);
  color: var(--orange); line-height: 1.18; margin-bottom: 16px;
  /* color: var(--navy); line-height: 1.18; margin-bottom: 16px; */
}
.sec-h2-orange { color: var(--orange); }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 300;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
  height: 64px;
}
.hdr {
  display: flex; align-items: center;
  justify-content: space-between; height: 64px; gap: 16px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  width: auto;
  height: 36px;
  max-width: min(260px, 42vw);
  object-fit: contain;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 15px; font-weight: 600; color: #555;
  transition: color .15s;
}
.main-nav a:hover { color: var(--orange); }
.nav-cta { font-size: 16px; padding: 9px 20px;color: #fff !important;  }
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; display: block; transition: .3s; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: none;
  padding: 80px 0 72px;
  min-height: 420px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover; background-position: center;
  opacity: .99;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 40px; align-items: center;
}
.hero-left { color: #fff; }
.hero-h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(55px,3.8vw,70px); line-height: 1.3;
  color: #fff; margin-bottom: 20px;
}
.hero-h1 span { color: var(--orange); display: block; }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.75);
  max-width: 480px; line-height: 1.8; margin-bottom: 32px;
}
.hero-desc em { color: var(--orange); font-style: normal; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stat cards — right column */
.hero-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  padding: 14px 20px; color: #fff;
}
/*
.stat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.stat-icon svg { width: 18px; height: 18px; stroke: var(--orange); fill: none; stroke-width: 2; }
*/
.stat-icon2 {
  width: 40px; display: flex; align-items: center; justify-content: center; }
.stat-icon2 svg { width: 40px; height: 40px; stroke: var(--green); fill: #22c55e;; stroke-width: 2; }
.stat-txt .sn {
  font-family: var(--font-head); font-weight: 800;
  font-size: 22px; line-height: 1; color: #fff;
}
.stat-txt .sl { font-size: 16.5px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 2px; }

/* ════════════════════════════════════
   WHY FAIL
════════════════════════════════════ */
.sec-fail { padding: 88px 0; background: #fff; }
.sec-fail .center { text-align: center; }
.sec-fail .intro {
  font-size: 16.5px; color: var(--text-body);
  max-width: 640px; margin: 0 auto 52px; text-align: center; line-height: 1.75;
}

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

.fail-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .22s, transform .22s;
}
.fail-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.fail-icon {
  width: 60px; height: 60px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; 
}
/* Each card has unique icon bg color */
.fail-card:nth-child(1) .fail-icon { background: #DBEAFE; }  /* blue   */
.fail-card:nth-child(2) .fail-icon { background: #FEF3C7; }  /* yellow */
.fail-card:nth-child(3) .fail-icon { background: #EDE9FE; }  /* purple */

.fail-icon svg { width: 38px; height: 38px; stroke-width: 30; fill: none; }
.fail-card:nth-child(1) .fail-icon svg { stroke: navy; }
.fail-card:nth-child(2) .fail-icon svg { stroke: #D97706; }
.fail-card:nth-child(3) .fail-icon svg { stroke: #7C3AED; }

.fail-card h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 22px; color: var(--text-dark); margin-bottom: 12px;
}
.fail-card p { font-size: 15.5px; color: var(--text-body); line-height: 1.72; }
.fail-card p + p { margin-top: 10px; }
.fail-card p strong { font-weight: 700; color: var(--text-dark); }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.sec-services { padding: 88px 0; background: var(--bg-light); }
.sec-services .center { text-align: center; margin-bottom: 52px; }
.sec-services .center p { font-size: 16.5px; color: var(--text-body); margin-top: 12px; line-height: 1.7; }

.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: var(--shadow-card);
  transition: box-shadow .22s, transform .22s;
}
.svc-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.svc-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
/* Each service icon has its own colour */
.svc-card:nth-child(1) .svc-icon { background: #FEF9C3; }
.svc-card:nth-child(2) .svc-icon { background: #D1FAE5; }
.svc-card:nth-child(3) .svc-icon { background: #FCE7F3; }
.svc-card:nth-child(4) .svc-icon { background: #DBEAFE; }

.svc-icon svg { width: 24px; height: 24px; stroke-width: 1.6; fill: none; }
.svc-card:nth-child(1) .svc-icon svg { stroke: #CA8A04; }
.svc-card:nth-child(2) .svc-icon svg { stroke: #059669; }
.svc-card:nth-child(3) .svc-icon svg { stroke: #DB2777; }
.svc-card:nth-child(4) .svc-icon svg { stroke: #2563EB; }

.svc-body h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 22px; color: var(--text-dark); margin-bottom: 8px;
}
.svc-body p { font-size: 15.5px; color: var(--text-body); line-height: 1.7; }

.svc-cta { text-align: center; margin-top: 40px; }

/* ════════════════════════════════════
   4-STEP FRAMEWORK
════════════════════════════════════ */
.sec-framework { padding: 88px 0; background: #fff; }
.sec-framework .center { text-align: center; margin-bottom: 56px; }
.sec-framework .center p { font-size: 16.5px; color: var(--text-body); margin-top: 12px; line-height: 1.7; }

/* eyebrow with lines */
.eyebrow-line {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 16px;
}
.eyebrow-line::before,
.eyebrow-line::after {
  content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--orange);
}
.eyebrow-line span {
  font-size: 14px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
}

.steps-wrap {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; position: relative;
}
/* Connector line */
.steps-wrap::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: #E5E7EB; z-index: 0;
}

.step-card {
  position: relative; z-index: 1;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px;
  box-shadow: var(--shadow-card);
}

.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 20px; position: relative; z-index: 1;
}
/* Gradient from very light orange (1) to full orange (4) */
.step-card:nth-child(1) .step-num { background: #FDDCB8; color: var(--orange); }
.step-card:nth-child(2) .step-num { background: #FBC07A; color: #fff; }
.step-card:nth-child(3) .step-num { background: #F4A852; color: #fff; }
.step-card:nth-child(4) .step-num { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(247,148,29,.7); }

.step-card h3 {
  font-family: var(--font-head); font-weight: 700;
  font-size: 22px; color: var(--navy); margin-bottom: 10px;
}
.step-card p { font-size: 15.5px; color: var(--text-body); line-height: 1.7; }


/* ════════════════════════════════════
   WHY MAHANA — COMPARISON
════════════════════════════════════ */
.sec-why { padding: 88px 0; background: var(--bg-light); }
.sec-why .center { text-align: center; margin-bottom: 48px; }
.sec-why .center p { font-size: 16.5px; color: var(--text-body); margin-top: 12px; line-height: 1.65; }
.cmp-wrap { overflow-x: auto; }
.cmp-table {
  width: 100%; min-width: 560px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Header row */
.cmp-table thead tr { background: var(--navy); }
.cmp-table thead th {
  padding: 16px 24px; text-align: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border-right: 1px solid rgba(255,255,255,0.15); /* ← 縦罫線（ヘッダー） */
}
.cmp-table thead th:first-child { text-align: left; }
.cmp-table thead th:last-child { border-right: none; }
.cmp-table thead th.th-mh {
  background: var(--orange); color: #fff;
  font-size: 20px; letter-spacing: 2px;
  border-right: none;
}

/* Body */
.cmp-table tbody td {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  font-size: 16px; text-align: center;
  color: var(--text-body); vertical-align: middle;
  border-right: 1px solid var(--border); /* ← 縦罫線（ボディ） */
}
.cmp-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--text-dark);
}
.cmp-table tbody td:last-child {
  border-right: none;
  background: #FEF6EC; /* ← Mahana列：薄いオレンジ背景 */
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:nth-child(even) td:not(:last-child) { background: #FAFBFE; }
.cmp-table tbody tr:nth-child(even) td:last-child { background: #FDEEDD; } /* ← 偶数行のMahana列 */


/* Agency列のヘッダー */
.cmp-table thead th.th-agency {
  background: #3D5A8A; /* ← 少し明るいネイビー */
  color: rgba(255,255,255,0.7);
}

/* Agency列のボディ */
.cmp-table tbody td.td-agency {
  background: #EEF1F8; /* ← 薄いブルーグレー */
}

/* 偶数行のAgency列 */
.cmp-table tbody tr:nth-child(even) td.td-agency {
  background: #E4E8F3; /* ← 少し濃いブルーグレー */
}

/* ✗ and ✓ */
.x-mark { display: block; color: #949EAB; font-size: 18px; font-weight: 700; }
.x-sub  { display: block; font-size: 14px; color: #7B8595; margin-top: 2px; }
.chk    { display: block; color: #22C55E; font-size: 20px; margin-bottom: 2px; }
.chk-txt { font-weight: 700; font-size: 16px; color: var(--navy); }
.chk-sub { font-size: 13px; color: var(--text-body); }




/* ════════════════════════════════════
   RESULTS — metrics + testimonial
════════════════════════════════════ */
.sec-results {
  background-color: var(--navy);
  /* 縦横線のグリッドテクスチャ */
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Top: 2-col layout — metrics left, photo+quote right */
.results-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 380px;
}

/* Metrics block (left) */
.metrics-block { padding: 120px 48px 56px 0; }
.metrics-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; }

/* metric-boxのグラデーション背景 */
.metric-box {
  background: linear-gradient(
    315deg,
    rgba(255,255,255,0.58) 0%,
    rgba(255,255,255,0.28) 40%,
    rgba(30,50,100,0.35) 100%
  );
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 24px 20px;
  backdrop-filter: blur(4px); /* ガラス感を追加 */
}

.metric-box .mbig {
  font-family: var(--font-head); font-weight: 900;
  font-size: 38px; color: var(--orange); line-height: 1;
}
.metric-box .mtag { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--orange); text-transform: uppercase; margin-bottom: 2px; }
.metric-box .mdesc { font-size: 16px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Photo + quote block (right) */
.testi-block { display: flex; flex-direction: column; gap: 0; }
.testi-photo { flex: 1; overflow: hidden; min-height: 220px; }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 40px; padding: 30px 25px 0px 25px;}

.testi-quote { padding: 28px 36px;
  display: flex; gap: 16px; align-items: flex-start;
}

.testi-right blockquote {
  font-size: 17px; font-style: italic;
  color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 14px;
}
.big-quote {
	fill: var(--orange);width: 120px;}

.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 14px; color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; color: #fff; }
.testi-role { font-size: 13px; color: rgba(255,255,255,.5); }

/* ════════════════════════════════════
   FREE INQUIRY FORM
════════════════════════════════════ */
.sec-inquiry { padding: 88px 0; background: var(--bg-light); }

.inq-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px 48px;
  max-width: 580px; margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.inq-head { text-align: center; margin-bottom: 32px; }
.inq-head .eyebrow-line { margin-bottom: 8px; }
.inq-head h2 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 32px; color: var(--orange); margin-bottom: 8px;
}
.inq-head p { font-size: 14px; color: var(--text-body); }

.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px; letter-spacing: .2px;
}
.field input,
.field select,
.field textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 16px; color: var(--text-dark);
  background: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,148,29,.12);
}
.field input::placeholder,
.field textarea::placeholder { color: #C4C9D4; }
.field textarea { resize: vertical; min-height: 100px; }

.f-agree {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; color: var(--text-body); margin-bottom: 18px;
}
.f-agree input[type=checkbox] { width: 14px; height: 14px; margin-top: 2px; flex-shrink: 0; accent-color: var(--orange); }
.f-agree a { color: var(--orange); }

.btn-confirm {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: var(--orange); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  transition: all .18s;
}
.btn-confirm:hover { background: var(--orange-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,148,29,.35); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.5); padding: 52px 0 28px; }

.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  /* display: grid; grid-template-columns: 2fr 1fr 1fr;  */
  gap: 56px; margin-bottom: 48px;
}
.foot-logo {
  display: flex; align-items: center;
  margin-bottom: 14px;
}
.foot-logo-img {
  width: auto;
  height: 30px;
  object-fit: contain;
}
.foot-desc { font-size: 13px; line-height: 1.75; max-width: 280px; }

.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.foot-socials a:hover { background: var(--orange); border-color: var(--orange); }
.foot-socials svg { width: 15px; height: 15px; fill: rgba(255,255,255,.65); }

.foot-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 18px;
}
.foot-col li { margin-bottom: 10px; }
.foot-col a { font-size: 13px; transition: color .15s; }
.foot-col a:hover { color: var(--orange); }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; flex-wrap: wrap; gap: 10px;
}
.foot-links { display: flex; gap: 20px; }
.foot-links a { font-size: 12px; transition: color .15s; }
.foot-links a:hover { color: var(--orange); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .steps-wrap { grid-template-columns: repeat(2,1fr); }
  .steps-wrap::before { display: none; }
  .results-inner { grid-template-columns: 1fr; }
  .metrics-block { padding: 40px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav .nav-cta, .main-nav a { display: none; }
  .burger { display: flex; }

  body.nav-open .main-nav {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 28px 28px; gap: 18px;
    z-index: 299; border-top: 1px solid var(--border);
  }
  body.nav-open .main-nav a,
  body.nav-open .main-nav .nav-cta { display: flex; font-size: 16px; color: var(--navy); }
  body.nav-open .main-nav .nav-cta { background: var(--orange); color: #fff; width: 100%; justify-content: center; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 180px; }
  
  .fail-grid { grid-template-columns: 1fr; }
  .svc-grid  { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 20px;}
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .inq-card { padding: 36px 24px; }
  .f2 { grid-template-columns: 1fr; }
  .cmp-table th, .cmp-table td { padding: 12px 14px; font-size: 12.5px; }
  .big-quote {fill: var(--orange);width: 90px;}
}

@media (max-width: 500px) {
  .steps-wrap { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 28px; }
  .wrap { padding: 0 20px; }
  .metrics-block { padding: 40px 0px 30px 0px; }
  .metrics-grid { grid-template-columns: 0.7fr 0.7fr; gap: 10px;}
  .metric-box .mbig {
  font-family: var(--font-head); font-weight: 900;
  font-size: 30px; color: var(--orange); line-height: 1;
}
}


@media (max-width: 500px) {
  .logo-img { height: 28px; max-width: 58vw; }
  .foot-logo-img { height: 26px; }
}
