/* =========================================================
   Luminari Works — services.luminari
   Brand-consonant with luminari.jp: fox red, charcoal, white.
   Mobile-first. No external fonts or CDN — works offline.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --red:        #d9534f;
  --red-dark:   #bf423e;
  --red-soft:   #f5c9c7;
  --red-tint:   #fdf3f2;

  --ink:        #383838;
  --ink-deep:   #2b2b2b;
  --ink-soft:   #575757;
  --muted:      #6f6f6f;
  --muted-dark: #a8a4a2;

  --paper:      #ffffff;
  --paper-alt:  #faf9f8;
  --line:       #e7e3e0;
  --line-dark:  #4a4a4a;

  --line-green: #06c755;

  --wrap:       1160px;
  --wrap-narrow: 780px;
  --r:          6px;
  --r-lg:       12px;

  --shadow:     0 1px 2px rgba(56,56,56,.05), 0 8px 24px rgba(56,56,56,.06);
  --shadow-up:  0 2px 4px rgba(56,56,56,.06), 0 16px 40px rgba(56,56,56,.10);

  --ease:       cubic-bezier(.22,.61,.36,1);

  --font-ja: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
             "Hiragino Sans", "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic",
             Meiryo, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -100px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 18px;
  border-radius: var(--r); text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; }

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

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 22px;
}
.wrap-narrow { max-width: var(--wrap-narrow); }

.section { padding: 76px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-dark .section-lead,
.section-dark .card-body { color: #cfcbc8; }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(25px, 4.4vw, 36px);
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .02em;
}
.section-title.center { text-align: center; }

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}
.section-lead.center { text-align: center; }

.center { text-align: center; }

/* Latin-only typographic treatment — Japanese breaks under heavy tracking,
   so the wide uppercase look is scoped to the English view. */
html[lang="en"] .section-title,
html[lang="en"] .hero-title {
  text-transform: uppercase;
  letter-spacing: .09em;
}
html[lang="en"] .card-title,
html[lang="en"] .step-title {
  letter-spacing: .04em;
}
html[lang="en"] body { line-height: 1.7; }

/* ---------- Fox mark ---------- */
.fox { width: 30px; height: 30px; fill: var(--red); flex: none; }
.fox .fox-eye { fill: #fff; }
.fox-sm { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--red);
  border-radius: var(--r);
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--red);
  border-color: currentColor;
}
.btn-ghost:hover { background: var(--red); color: #fff; border-color: var(--red); }

.section-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.section-dark .btn-ghost:hover { background: var(--red); border-color: var(--red); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-block { width: 100%; padding: 16px 30px; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
}
.brand-text {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--ink);
  white-space: nowrap;
}
.brand-text em {
  font-style: normal;
  color: var(--red);
  margin-left: .3em;
}

.nav {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color .16s var(--ease);
}
.nav a:hover { color: var(--red); }
.nav .nav-cta { color: #fff; }

.header-tools { display: flex; align-items: center; gap: 10px; }

.lang { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.lang-btn {
  background: none;
  border: 0;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-on { background: var(--red); color: #fff; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
}
.burger-box { display: block; width: 18px; }
.burger-box i {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform .22s var(--ease), opacity .16s var(--ease);
}
.burger-box i + i { margin-top: 4px; }
.burger[aria-expanded="true"] .burger-box i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-box i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-box i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.nav.is-open {
  display: flex;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 8px 22px 22px;
  box-shadow: var(--shadow);
}
.nav.is-open a {
  padding: 14px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.nav.is-open .nav-cta {
  margin-top: 16px;
  border-bottom: 0;
  justify-content: center;
}

@media (min-width: 1000px) {
  .nav { display: flex; }
  .burger { display: none; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 88px 0 96px;
}
.hero-mark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, 74vw);
  height: auto;
  fill: #fff;
  opacity: .045;
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; }
.hero-title {
  font-size: clamp(31px, 6.6vw, 55px);
  line-height: 1.32;
  font-weight: 800;
  letter-spacing: .01em;
}
.hero-lead {
  margin-top: 22px;
  font-size: clamp(15px, 2vw, 17px);
  color: #d6d2cf;
  max-width: 56ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted-dark);
}

/* =========================================================
   Cards
   ========================================================= */
.cards {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}
@media (min-width: 700px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
  .cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.section-alt .card { background: var(--paper); }
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-up);
  border-color: var(--red-soft);
}
.card-num {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 12px;
}
.card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 10px;
}
.card-body {
  font-size: 14.5px;
  color: var(--muted);
}

/* service cards */
.card-svc { text-align: center; padding-top: 36px; }
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  border: 2px solid var(--red-soft);
  border-radius: 50%;
  background: var(--red-tint);
  margin-bottom: 20px;
  transition: border-color .28s var(--ease), background .28s var(--ease);
}
.card-svc:hover .icon-circle { border-color: var(--red); background: #fff; }
.icon {
  width: 42px; height: 42px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}
.tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
}

/* =========================================================
   LINE demo
   ========================================================= */
.demo {
  display: grid;
  gap: 32px;
  margin-top: 46px;
  align-items: start;
}
@media (min-width: 900px) {
  .demo { grid-template-columns: 340px 1fr; gap: 56px; }
}

.phone {
  background: #8ba3b8;
  border: 8px solid #1c1c1c;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
  max-width: 340px;
  width: 100%;
  margin-inline: auto;
}
.phone-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f7f7f7;
  padding: 12px 14px;
  border-bottom: 1px solid #dcdcdc;
}
.phone-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0;
}
/* Fixed height so the handset stays one size as messages arrive —
   the conversation scrolls inside it, the way a real chat does. */
.chat {
  height: 380px;
  overflow-y: auto;
  overscroll-behavior: contain;
  /* No smooth scroll-behavior here: it makes the programmatic
     "jump to newest message" unreliable. Instant is correct anyway. */
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #8ba3b8;
}
.chat > * { flex: none; }
.phone-hint {
  margin: 0;
  padding: 9px 12px 11px;
  background: #7f97ab;
  font-size: 11px;
  text-align: center;
  color: rgba(255,255,255,.85);
  letter-spacing: 0;
}

.bubble {
  max-width: 84%;
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1.65;
  border-radius: 14px;
  white-space: pre-line;
  letter-spacing: 0;
  animation: pop .28s var(--ease) both;
}
.bubble.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink);
  border-top-left-radius: 4px;
}
.bubble.user {
  align-self: flex-end;
  background: var(--line-green);
  color: #06331a;
  border-top-right-radius: 4px;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 12px 15px;
  display: flex;
  gap: 4px;
}
.typing i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #b9b9b9;
  animation: blink 1.1s infinite;
}
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes blink { 0%,60%,100% { opacity: .3; } 30% { opacity: 1; } }

.slots {
  align-self: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 90%;
  animation: pop .28s var(--ease) both;
}
.slot {
  background: #fff;
  border: 1px solid var(--line-green);
  color: #0a7a38;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}
.slot:hover:not(:disabled) { background: var(--line-green); color: #fff; transform: translateY(-1px); }
.slot:disabled { opacity: .45; cursor: default; }

.demo-side-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 20px;
}
.events { display: grid; gap: 12px; }
.event {
  position: relative;
  padding: 15px 18px 15px 50px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  font-size: 14px;
  color: #8f8b89;
  background: rgba(255,255,255,.02);
  opacity: .45;
  transition: opacity .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.event::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: border-color .35s var(--ease);
}
.event::after {
  content: "";
  position: absolute;
  left: 22px; top: 50%;
  width: 8px; height: 4px;
  margin-top: -3px;
  border-left: 2px solid var(--line-green);
  border-bottom: 2px solid var(--line-green);
  transform: rotate(-45deg) scale(0);
  transition: transform .3s var(--ease) .05s;
}
.event.is-done {
  opacity: 1;
  color: #fff;
  border-color: var(--line-green);
  transform: translateX(3px);
}
.event.is-done::after { transform: rotate(-45deg) scale(1); }

.demo-side-note {
  margin: 22px 0 24px;
  font-size: 14px;
  color: #cfcbc8;
}

/* =========================================================
   Cases — what we build
   ========================================================= */
.cases {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}
@media (min-width: 760px) { .cases { grid-template-columns: repeat(2, 1fr); } }

.case-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.case .card-num { margin-bottom: 0; }
.case-time {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 11px;
  white-space: nowrap;
}
.case .tags { justify-content: flex-start; }

.section-note {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--muted);
}

/* =========================================================
   Process — speed figures, then the four steps
   ========================================================= */
.stats {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}
@media (min-width: 700px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 0; } }

.stat {
  text-align: center;
  padding: 22px 18px;
}
@media (min-width: 700px) {
  .stat + .stat { border-left: 1px solid var(--line); }
}
.stat-n {
  display: block;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--red);
  letter-spacing: .01em;
}
.stat-l {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.flow {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 700px)  { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .flow { grid-template-columns: repeat(4, 1fr); } }

.flow-step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 24px 28px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.flow-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-up); }

/* Step 2 — the free demo — is the offer, so it carries the accent. */
.flow-step.is-featured {
  border-color: var(--red-soft);
  border-top-color: var(--red);
  background: var(--red-tint);
}
.flow-badge {
  position: absolute;
  top: -11px; right: 18px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  border-radius: 999px;
  padding: 4px 13px;
}
.flow-n {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--red);
  margin-bottom: 12px;
}
.flow-title { font-size: 18px; font-weight: 700; line-height: 1.45; }
.flow-meta {
  display: inline-block;
  margin: 8px 0 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  background: var(--red-tint);
  border: 1px solid var(--red-soft);
  border-radius: 999px;
  padding: 3px 12px;
}
.flow-step.is-featured .flow-meta { background: #fff; }

.proc-note {
  max-width: 680px;
  margin: 34px auto 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--muted);
  text-align: center;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { margin-top: 40px; border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  transition: color .16s var(--ease);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--red); }
.qa summary::after {
  content: "";
  position: absolute;
  right: 12px; top: 50%;
  width: 10px; height: 10px;
  margin-top: -8px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform .24s var(--ease);
}
.qa[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.qa-body { padding: 0 8px 24px 0; }
.qa-body p { font-size: 14.5px; color: var(--muted); }

/* =========================================================
   Form
   ========================================================= */
/* Three fields, placeholder-led — matching the parent site's contact form.
   Labels are present for screen readers, just not shown. */
.form { margin-top: 40px; display: grid; gap: 14px; }
.field { display: grid; gap: 8px; }

.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  background: #fff;
  /* Explicit, not inherited: the contact section is dark, and `color: inherit`
     on form controls would render white text on these white fields. */
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: var(--r);
  padding: 13px 14px;
  font-size: 15px;
  line-height: 1.6;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.form textarea { resize: vertical; min-height: 140px; }
.form ::placeholder { color: #9a9a9a; opacity: 1; }
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217,83,79,.3);
}
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] { border-color: #ffb3b0; box-shadow: 0 0 0 3px rgba(217,83,79,.28); }

.err {
  font-size: 12.5px;
  font-weight: 700;
  color: #ff9b98;
  margin: 0;
}
.form-note { font-size: 12.5px; color: var(--muted-dark); text-align: center; margin: 6px 0 0; }

.form-status {
  margin: 4px 0 0;
  padding: 16px 18px;
  border-radius: var(--r);
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
}
.form-status.ok { background: rgba(6,199,85,.14); border: 1px solid var(--line-green); color: #b6f0cd; }
.form-status.ng { background: rgba(217,83,79,.16); border: 1px solid var(--red); color: #ffcfcd; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--ink-deep);
  color: #b9b5b3;
  padding: 52px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner { display: grid; gap: 16px; justify-items: center; text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 8px; }
.footer-brand .brand-text { color: #fff; font-size: 17px; }
.footer-note { font-size: 13.5px; }
.footer-note a { color: var(--red); text-decoration: none; font-weight: 700; }
.footer-note a:hover { text-decoration: underline; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-top: 4px; }
.footer-nav a { font-size: 13.5px; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.copyright { font-size: 12px; color: #7d7977; letter-spacing: .06em; margin-top: 8px; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (min-width: 800px) {
  .section { padding: 100px 0; }
  .hero { padding: 130px 0 140px; }
}
