/* ============================================================
   Master Implementers — /6figurepath
   Brand: MI Navy #002D6A + Pastel Yellow #FFE187
   ============================================================ */

:root {
  --navy: #002D6A;
  --navy-700: #001f4d;
  --navy-50: #f3f6fb;
  --yellow: #FFE187;
  --yellow-strong: #FFCB3D;
  --orange: #FFB765;
  --charcoal: #2F2F2D;
  --ink: #18223a;
  --muted: #5a6478;
  --line: #e5e9f2;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 6px 20px rgba(0, 45, 106, 0.08);
  --shadow-md: 0 18px 50px rgba(0, 45, 106, 0.14);
  --max: 1140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Avenir', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
a:hover { color: var(--navy-700); }

h1, h2, h3 {
  font-family: 'Montserrat', 'Nexa Bold', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
p { margin: 0 0 1em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  padding: 20px 0;
  display: flex;
  justify-content: center;
}
.site-header .brand { display: block; }
.site-header .brand img { height: 38px; width: auto; display: block; }

/* ---------- Eyebrow / section labels ---------- */
.eyebrow,
.section-eyebrow {
  display: inline-block !important;
  width: auto !important;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin: 0 auto 18px;
}
p.eyebrow, p.section-eyebrow { max-width: max-content; }

.section-title { margin-bottom: 12px; }
.section-sub { color: var(--muted); max-width: 760px; margin: 0 auto 36px; }
section .section-sub { text-align: center; }
section .section-title { text-align: center; }
section .section-eyebrow { display: inline-block; }
section > .container > .section-eyebrow,
section > .container > .section-title { display: block; margin-left: auto; margin-right: auto; }
section > .container { text-align: center; }
section > .container > .ladder-rows,
section > .container > .systems-grid,
section > .container > .proof-grid { text-align: left; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 36px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 140%; height: 120px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero h1 { color: var(--white); max-width: 880px; margin-left: auto; margin-right: auto; }
.hero h1 .hl {
  background: linear-gradient(180deg, transparent 72%, var(--yellow) 72%, var(--yellow) 97%, transparent 97%);
  padding: 0 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero .sub { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 720px; margin: 0 auto 40px; }
.hero .eyebrow { background: var(--yellow); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  text-align: left;
  margin-top: 40px;
  align-items: start;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

.hero-bullets { color: rgba(255,255,255,0.95); padding-top: 8px; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 1rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 22px; height: 22px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px var(--yellow-strong);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 6px; top: 17px;
  width: 10px; height: 5px;
  border-left: 2.5px solid var(--navy);
  border-bottom: 2.5px solid var(--navy);
  transform: rotate(-45deg);
}
.check-list.compact li { font-size: 0.97rem; padding: 6px 0 6px 32px; }
.check-list.compact li::before { width: 18px; height: 18px; top: 9px; }
.check-list.compact li::after { left: 4px; top: 12px; }

/* ---------- Form card ---------- */
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
}
.form-title { color: var(--navy); margin: 0 0 6px; font-size: 1.45rem; }
.form-sub { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }

.form-card label { display: block; margin-bottom: 14px; }
.form-card label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--navy-50);
  transition: border-color 0.15s, background 0.15s;
}
.form-card input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}

.btn {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s, background 0.15s;
  box-shadow: 0 6px 14px rgba(0,45,106,0.18);
}
.btn:hover { transform: translateY(-1px); background: var(--navy-700); color: var(--white); box-shadow: 0 10px 22px rgba(0,45,106,0.24); }
.btn-primary {
  background: var(--yellow-strong);
  color: var(--navy);
  box-shadow: 0 8px 22px rgba(255,203,61,0.45);
}
.btn-primary:hover { background: var(--yellow); color: var(--navy); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

.micro { font-size: 0.8rem; color: var(--muted); margin: 10px 0 0; text-align: center; }
.form-msg { font-size: 0.88rem; text-align: center; margin: 12px 0 0; min-height: 1.2em; color: var(--muted); }
.form-msg.error { color: #b3261e; font-weight: 600; }
#kit-submit:disabled { opacity: 0.7; cursor: progress; }

/* ---------- Lifestyle Ladder ---------- */
.ladder { background: var(--white); padding: 84px 0 72px; }
.ladder-rows {
  max-width: 780px;
  margin: 12px auto 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ladder-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--line);
  border-left-width: 10px;
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.15s, box-shadow 0.15s;
}
.ladder-row:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.ladder-row .r-stage { font-size: 1.1rem; }
.ladder-row .r-rev { color: var(--muted); font-weight: 500; }
.ladder-row .r-focus { text-align: right; color: var(--charcoal); font-weight: 700; }
.ladder-row.r1 { border-left-color: #4FB3A9; }
.ladder-row.r2 { border-left-color: #E94B5A; }
.ladder-row.r3 { border-left-color: #FF8C3F; }
.ladder-row.r4 { border-left-color: var(--yellow-strong); }
.ladder-row.r5 { border-left-color: var(--navy); }

/* ---------- 9 Systems Grid ---------- */
.systems { background: var(--navy-50); padding: 84px 0 72px; }
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 36px;
}
.sys {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sys:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sys .num {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.sys h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 6px; }
.sys p { color: var(--muted); font-size: 0.94rem; margin: 0; }

@media (max-width: 880px) { .systems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .systems-grid { grid-template-columns: 1fr; } }

/* ---------- Proof / Testimonials Grid (4-col masonry, smaller cards) ---------- */
.proof { background: var(--white); padding: 84px 0 72px; }
.proof-grid {
  column-count: 4;
  column-gap: 14px;
  margin-top: 16px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.proof-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  break-inside: avoid;
  transition: transform 0.2s, box-shadow 0.2s;
  background: var(--navy-50);
}
.proof-grid img:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
@media (max-width: 1024px) { .proof-grid { column-count: 3; } }
@media (max-width: 720px) { .proof-grid { column-count: 2; } }
@media (max-width: 460px) { .proof-grid { column-count: 1; } }

/* ---------- Final CTA band ---------- */
.final-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 72px 0;
}
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 640px; margin: 0 auto 24px; }

/* ---------- TY page ---------- */
.ty-hero {
  background: var(--navy);
  color: var(--white);
  padding: 20px 0 56px;
}
.ty-hero h1 {
  color: var(--white);
  text-align: center;
  max-width: 920px;
  margin: 10px auto 20px;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
}
.ty-hero h1 .hl {
  background: linear-gradient(180deg, transparent 68%, var(--yellow) 68%, var(--yellow) 96%, transparent 96%);
  padding: 0 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.ty-hero .eyebrow { display: block; text-align: center; margin: 0 auto 6px; }
.video-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@supports not (aspect-ratio: 16 / 9) {
  .video-wrap { aspect-ratio: auto; height: 0; padding-bottom: 56.25%; }
}
.ty-instructions {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
  color: rgba(255,255,255,0.92);
  font-size: 1.02rem;
}
.ty-callout {
  max-width: 820px;
  margin: 32px auto 0;
  background: rgba(255, 225, 135, 0.12);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  position: relative;
}
.ty-callout::before {
  content: '⏸';
  position: absolute;
  top: -18px; left: 24px;
  background: var(--yellow);
  color: var(--navy);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}
.ty-callout p {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: left;
}
.ty-callout strong { color: var(--yellow); }

.call-cta { background: var(--navy-50); padding: 72px 0; }
.call-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.call-card h2 { margin-bottom: 14px; }
.call-card p { color: var(--muted); }
.call-card .check-list { text-align: left; max-width: 520px; margin: 16px auto 26px; }
.call-card .btn { margin-top: 6px; }
.call-card .micro { margin-top: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { height: 28px; }
.footer-meta p { margin: 0; font-size: 0.88rem; }
.footer-meta .micro { color: rgba(255,255,255,0.45); }

/* ---------- Stats band ---------- */
.stats { background: var(--navy); color: var(--white); padding: 56px 0; }
.stats .section-eyebrow { margin-bottom: 28px; }
.stats .container { text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: 'Montserrat', 'Nexa Bold', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ---------- About Marc ---------- */
.about-marc { background: var(--white); padding: 84px 0 72px; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  background: var(--navy-50);
}
.about-body { text-align: left; }
.about-body h2 { text-align: left; }
.section-title.left { text-align: left; }
.about-body p { color: var(--ink); font-size: 1.02rem; }
.about-tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 24px; }
.about-tags span {
  background: var(--navy-50);
  color: var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 340px; margin: 0 auto; }
}

/* ---------- WWU walkthrough VSL (TY page) ---------- */
.wwu-video { background: var(--white); padding: 80px 0 56px; }
.wwu-video .container { text-align: center; }
.vsl-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 36px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,45,106,0.18);
  background: #000;
}
.vsl-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Fallback for any browser without aspect-ratio (pre-2021) */
@supports not (aspect-ratio: 16 / 9) {
  .vsl-wrap { aspect-ratio: auto; height: 0; padding-bottom: 56.25%; }
}

/* ---------- Case Studies — 2-col for bigger thumbnails ---------- */
.case-studies { background: var(--navy-50); padding: 84px 0 72px; }
.case-studies .container { text-align: center; }
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 32px;
  margin: 40px auto 0;
  max-width: 1080px;
  text-align: left;
}
.cs { display: flex; flex-direction: column; min-width: 0; }
.cs-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cs-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cs-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@supports not (aspect-ratio: 16 / 9) {
  .cs-frame { aspect-ratio: auto; height: 0; padding-bottom: 56.25%; }
}
.cs-title {
  margin: 16px 0 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 720px) {
  .cs-grid { grid-template-columns: 1fr; gap: 30px; }
  .cs-title { font-size: 1rem; }
}

/* ---------- Book Call section (TY page) ---------- */
.book-call { background: var(--navy-50); padding: 84px 0; }
.book-call .container { text-align: center; }

.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0 40px;
  text-align: left;
}
.expect {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.expect:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.expect .step {
  display: inline-block;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.expect h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.05rem; }
.expect p { color: var(--muted); font-size: 0.93rem; margin: 0; }
@media (max-width: 880px) { .expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .expect-grid { grid-template-columns: 1fr; } }

.calendly-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
  margin: 24px auto 0;
  max-width: 980px;
  overflow: hidden;
}
.calendly-inline-widget { border-radius: var(--radius); }

/* ---------- Video Testimonials ---------- */
.video-testimonials { background: var(--white); padding: 84px 0 72px; }
.video-testimonials .container { text-align: center; }
.vt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.vt { text-align: center; }
.vt-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  transition: transform 0.15s, box-shadow 0.15s;
}
.vt-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.vt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vt-cap {
  margin: 10px 0 0;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
@media (max-width: 880px) { .vt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .vt-grid { grid-template-columns: 1fr; } }

/* ---------- Screenshots gallery (full-width, one per row) ---------- */
.screenshots { background: var(--navy-50); padding: 84px 0 72px; }
.screenshots .container { text-align: center; }
.screenshot-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px auto 0;
  max-width: 920px;
}
.screenshot-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  background: var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
}
.screenshot-grid img:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(0,45,106,0.18); }

/* ---------- Small tweaks ---------- */
::selection { background: var(--yellow); color: var(--navy); }

/* ---------- Mobile polish (≤640px) ---------- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.65rem, 6.4vw, 2.1rem); }
  .eyebrow, .section-eyebrow { font-size: 0.72rem; padding: 6px 14px; letter-spacing: 0.08em; }
  .hero { padding: 28px 0 72px; }
  .hero .sub { font-size: 1rem; }
  .wwu-video { padding: 56px 0 48px; }
  .hero-grid { gap: 22px; margin-top: 28px; }
  .check-list li { font-size: 0.98rem; padding: 8px 0 8px 32px; }
  .check-list li::before { width: 20px; height: 20px; top: 10px; }
  .check-list li::after { left: 5px; top: 15px; }
  .form-card { padding: 22px 20px; border-radius: 16px; }
  .form-card input { padding: 12px 13px; font-size: 16px; }
  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .stats { padding: 44px 0; }
  .stats-grid { gap: 22px 18px; }
  .stat-num { font-size: 2rem; }
  .stat-label { font-size: 0.88rem; }
  .about-marc { padding: 56px 0 48px; }
  .about-grid { gap: 24px; }
  .about-body p { font-size: 1rem; }
  .about-tags span { font-size: 0.78rem; padding: 5px 12px; }
  .proof { padding: 56px 0 48px; }
  .proof-grid { column-gap: 12px; }
  .proof-grid img { margin-bottom: 12px; }
  .final-cta { padding: 56px 0; }
  .ty-hero { padding: 18px 0 44px; }
  .ty-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .ty-callout { padding: 18px 22px; margin-top: 24px; }
  .ty-callout p { font-size: 0.98rem; }
  .book-call { padding: 56px 0; }
  .call-card { padding: 28px 22px; }
  .calendly-wrap { padding: 6px; }
  .calendly-inline-widget { height: 900px !important; }
  .screenshots { padding: 56px 0 48px; }
  .screenshot-grid { gap: 16px; }
  .site-header { padding: 16px 0; }
  .site-header .brand img { height: 30px; }
}
